Parcourir la source

fix: emoji in links

master
Bettenbuk Zoltan il y a 5 ans
Parent
révision
b64294af6d
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      react/features/chat/functions.js

+ 1
- 1
react/features/chat/functions.js Voir le fichier

@@ -32,7 +32,7 @@ const EMOTICON_REGEXP_ARRAY: Array<Array<Object>> = [];
32 32
         // Adding slack-type emoji format
33 33
         escapedValues.push(escapeRegexp(`:${key}:`));
34 34
 
35
-        const regexp = `(${escapedValues.join('|')})`;
35
+        const regexp = `\\B(${escapedValues.join('|')})\\B`;
36 36
 
37 37
         EMOTICON_REGEXP_ARRAY.push([ new RegExp(regexp, 'g'), value ]);
38 38
     }

Chargement…
Annuler
Enregistrer