From 758acdc196c223fd9f0151f7da89ea27be7ea39d Mon Sep 17 00:00:00 2001 From: _Lighty_ <49841131+1Lighty@users.noreply.github.com> Date: Wed, 7 Oct 2020 01:04:05 +0200 Subject: [PATCH] IAN v1.0.7 fix parsers --- Plugins/InAppNotifications/InAppNotifications.plugin.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Plugins/InAppNotifications/InAppNotifications.plugin.js b/Plugins/InAppNotifications/InAppNotifications.plugin.js index 975d411..31900eb 100644 --- a/Plugins/InAppNotifications/InAppNotifications.plugin.js +++ b/Plugins/InAppNotifications/InAppNotifications.plugin.js @@ -41,7 +41,7 @@ module.exports = (() => { twitter_username: '' } ], - version: '1.0.6', + version: '1.0.7', description: 'Show a notification in Discord when someone sends a message, just like on mobile.', github: 'https://github.com/1Lighty', github_raw: 'https://raw.githubusercontent.com/1Lighty/BetterDiscordPlugins/master/Plugins/InAppNotifications/InAppNotifications.plugin.js' @@ -93,7 +93,7 @@ module.exports = (() => { { title: 'Fixed', type: 'fixed', - items: ['Changed to module.exports because useless backwards incompatbile changes are the motto for BBD apparently.'] + items: ['Fixed not working.'] } ] }; @@ -106,7 +106,7 @@ module.exports = (() => { const LurkerStore = WebpackModules.getByProps('isLurking'); const MuteStore = WebpackModules.getByProps('allowNoMessages'); const isMentionedUtils = WebpackModules.getByProps('isRawMessageMentioned'); - const ParserModule = WebpackModules.getByProps('parseAllowLinks', 'parse'); + const ParserModule = WebpackModules.getByProps('astParserFor', 'parse'); const MessageClasses = WebpackModules.getByProps('username', 'messageContent'); const MarkupClassname = XenoLib.getClass('markup'); const Messages = (WebpackModules.getByProps('Messages') || {}).Messages;