Ver código fonte

fix: emoji in links

master
Bettenbuk Zoltan 5 anos atrás
pai
commit
b64294af6d
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      react/features/chat/functions.js

+ 1
- 1
react/features/chat/functions.js Ver arquivo

@@ -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
     }

Carregando…
Cancelar
Salvar