diff --git a/src/util/Util.js b/src/util/Util.js index 1d6f2d17b..c1020ec10 100644 --- a/src/util/Util.js +++ b/src/util/Util.js @@ -78,7 +78,7 @@ class Util { static parseEmoji(text) { if (text.includes('%')) text = decodeURIComponent(text); if (!text.includes(':')) return { animated: false, name: text, id: null }; - const m = text.match(/?/); + const m = text.match(/?/); if (!m) return null; return { animated: Boolean(m[1]), name: m[2], id: m[3] }; }