diff options
author | Adam <Adam@anope.org> | 2013-08-25 23:26:45 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-08-25 23:26:45 -0400 |
commit | 6b79349e6c7ea2174c90c2567dde2038ebd59276 (patch) | |
tree | 4685efb23c9ddbcd8d43621567346a3490998a8f /src/users.cpp | |
parent | 678f54903d3c18d6478f6be9e29a45eec62ef421 (diff) |
Fix User::IsIdentified with check_nick, do not remove +r on bursting clients until after server sync
Diffstat (limited to 'src/users.cpp')
-rw-r--r-- | src/users.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp index f44a6f62d..3c99b46e6 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -367,7 +367,7 @@ bool User::IsIdentified(bool check_nick) const { if (check_nick && this->nc) { - NickAlias *na = NickAlias::Find(this->nc->display); + NickAlias *na = NickAlias::Find(this->nick); return na && *na->nc == *this->nc; } |