mirror of
https://github.com/anope/anope.git
synced 2026-06-26 21:36:38 +02:00
Fixed some logic fail in User::IsRecognized
This commit is contained in:
+1
-1
@@ -455,7 +455,7 @@ bool User::IsRecognized(bool CheckSecure)
|
||||
{
|
||||
NickAlias *na = findnick(this->nick);
|
||||
|
||||
if (!na || !na->nc->HasFlag(NI_SECURE))
|
||||
if (!na || na->nc->HasFlag(NI_SECURE))
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user