Merge pull request #620 from poixen/mention_punctuation
Check for non-characters
This commit is contained in:
commit
b7521bad8b
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ void ChatView::appendMessage(QString message, QString sender, UserLevelFlags use
|
|||
}
|
||||
// another user has been mentioned
|
||||
else {
|
||||
int mentionEndIndex = message.indexOf(" ");
|
||||
int mentionEndIndex = message.indexOf(QRegExp("\\W"), 1);// from 1 as @ is non-char
|
||||
if (mentionEndIndex == -1)
|
||||
mentionEndIndex = message.size(); // there is no text after the mention
|
||||
QString userMention = message.left(mentionEndIndex);
|
||||
|
|
Loading…
Reference in a new issue