Explorar el Código

fix: emoji in links

master
Bettenbuk Zoltan hace 5 años
padre
commit
b64294af6d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      react/features/chat/functions.js

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

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

Loading…
Cancelar
Guardar