summaryrefslogtreecommitdiff
path: root/src/users.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-08-25 23:26:45 -0400
committerAdam <Adam@anope.org>2013-08-25 23:26:45 -0400
commit6b79349e6c7ea2174c90c2567dde2038ebd59276 (patch)
tree4685efb23c9ddbcd8d43621567346a3490998a8f /src/users.cpp
parent678f54903d3c18d6478f6be9e29a45eec62ef421 (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.cpp2
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;
}