diff options
-rw-r--r-- | src/users.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/users.c b/src/users.c index 41d314a05..8075b4b42 100644 --- a/src/users.c +++ b/src/users.c @@ -509,6 +509,9 @@ const bool User::IsRecognized() const */ void User::UpdateHost() { + if (!this->host) + return; + NickAlias *na = findnick(this->nick); OnAccess = false; |