diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-11-10 18:44:07 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-10 18:44:07 +0900 |
commit | 87d358f5aadd85840bf649769e7d052fdeaad684 (patch) | |
tree | d6793ed20bf209d144d9cf40db958a1e6ddb3f6a | |
parent | fa3bffd340ac512fbab77a05f10d2bf167ca2cc0 (diff) | |
parent | 27bec8d012b6310bf1f23c1c879232a841605f60 (diff) | |
download | libquotient-87d358f5aadd85840bf649769e7d052fdeaad684.tar.gz libquotient-87d358f5aadd85840bf649769e7d052fdeaad684.zip |
Merge pull request #112 from Quiark/master
Fix (IRC) bridge detection
-rw-r--r-- | user.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -115,7 +115,7 @@ void User::processEvent(Event* event) auto newName = e->displayName(); QRegularExpression reSuffix(" \\((IRC|Gitter)\\)$"); - auto match = reSuffix.match(d->name); + auto match = reSuffix.match(newName); if (match.hasMatch()) { d->bridged = match.captured(1); |