diff --git a/src/utils/changelog.js b/src/utils/changelog.js index 1d50302..7d15ac6 100644 --- a/src/utils/changelog.js +++ b/src/utils/changelog.js @@ -9,12 +9,25 @@ const prototype = { }; const config = [ + { + version: 8.0, + title: "Move servers", + shortTitle: "", + date: "08/11/2019", + headColor: "#0c7b7f", + new: [ + "You can now move servers to make your list more organized." + ], + fix: [ + "Fixed some bugs behind the scenes" + ], + msg: "Disabled custom emojis due to an xss vulnerability 🤦‍♂️" + }, { version: 7.9, title: "Server banner", shortTitle: "", date: "03/11/2019", - headColor: "#0c7b7f", new: [ "You can now add banners to your server! These banners will be displayed in your server channels list and in the explore tab. To change your banner, go to your server settings page." ], diff --git a/src/utils/messageFormatter.js b/src/utils/messageFormatter.js index d577f22..56cc4f2 100644 --- a/src/utils/messageFormatter.js +++ b/src/utils/messageFormatter.js @@ -35,7 +35,7 @@ const markdown = new MarkdownIt({ }) .use(normalizeFence) .use(chatPlugin) - .use(customEmoji) + // .use(customEmoji) .use(formatLink) .use(formatCode);