Skip to content

Commit

Permalink
XL v1.4.15 fix notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
1Lighty authored Mar 28, 2024
1 parent 82f3d44 commit 7876ffa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Plugins/1XenoLib.plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @description Simple library to complement plugins with shared code without lowering performance. Also adds needed buttons to some plugins.
* @author 1Lighty
* @authorId 239513071272329217
* @version 1.4.14
* @version 1.4.15
* @invite NYvWdN5
* @donate https://paypal.me/lighty13
* @source https://github.com/1Lighty/BetterDiscordPlugins/blob/master/Plugins/1XenoLib.plugin.js
Expand Down Expand Up @@ -106,7 +106,7 @@ module.exports = (() => {
twitter_username: ''
}
],
version: '1.4.14',
version: '1.4.15',
description: 'Simple library to complement plugins with shared code without lowering performance. Also adds needed buttons to some plugins.',
github: 'https://github.com/1Lighty',
github_raw: 'https://raw.githubusercontent.com/1Lighty/BetterDiscordPlugins/master/Plugins/1XenoLib.plugin.js'
Expand Down Expand Up @@ -904,8 +904,8 @@ module.exports = (() => {


try {
XenoLib.ReactComponents.ButtonOptions = WebpackModules.getByProps('Button');
XenoLib.ReactComponents.Button = WebpackModules.getByProps('Button').Button;
XenoLib.ReactComponents.ButtonOptions = WebpackModules.getByProps('Button', 'ButtonColors');
XenoLib.ReactComponents.Button = WebpackModules.getByProps('Button', 'ButtonColors').Button;
} catch (e) {
Logger.stacktrace('Error getting Button component', e);
}
Expand Down

0 comments on commit 7876ffa

Please sign in to comment.