1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 21:56:38 +02:00

Fix User::IsIdentified with check_nick, do not remove +r on bursting clients until after server sync

This commit is contained in:
Adam
2013-08-25 23:26:45 -04:00
parent 678f54903d
commit 6b79349e6c
2 changed files with 10 additions and 4 deletions
+1 -1
View File
@@ -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;
}