diff options
author | Roman Plášil <me@rplasil.name> | 2017-11-10 17:36:54 +0800 |
---|---|---|
committer | Roman Plášil <me@rplasil.name> | 2017-11-10 17:36:54 +0800 |
commit | 27bec8d012b6310bf1f23c1c879232a841605f60 (patch) | |
tree | d6793ed20bf209d144d9cf40db958a1e6ddb3f6a | |
parent | fa3bffd340ac512fbab77a05f10d2bf167ca2cc0 (diff) | |
download | libquotient-27bec8d012b6310bf1f23c1c879232a841605f60.tar.gz libquotient-27bec8d012b6310bf1f23c1c879232a841605f60.zip |
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); |