fix: emoji in links

This commit is contained in:
Bettenbuk Zoltan 2019-11-27 10:59:23 +01:00 committed by Zoltan Bettenbuk
parent bbf33a8895
commit b64294af6d
1 changed files with 1 additions and 1 deletions

View File

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