Commit 1c50d4d7 authored by JC Brand's avatar JC Brand

Bugfix. Numbers aren't delineators for mentions

parent f17edee8
...@@ -616,7 +616,7 @@ converse.plugins.add('converse-muc', { ...@@ -616,7 +616,7 @@ converse.plugins.add('converse-muc', {
if (!longest_match) { if (!longest_match) {
return null; return null;
} }
if ((mention[longest_match.length] || '').match(/[A-Za-zäëïöüâêîôûáéíóúàèìòùÄËÏÖÜÂÊÎÔÛÁÉÍÓÚÀÈÌÒÙ]/i)) { if ((mention[longest_match.length] || '').match(/[A-Za-zäëïöüâêîôûáéíóúàèìòùÄËÏÖÜÂÊÎÔÛÁÉÍÓÚÀÈÌÒÙ0-9]/i)) {
// avoid false positives, i.e. mentions that have // avoid false positives, i.e. mentions that have
// further alphabetical characters than our longest // further alphabetical characters than our longest
// match. // match.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment