summaryrefslogtreecommitdiff
path: root/modules/commands/cs_seen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/commands/cs_seen.cpp')
-rw-r--r--modules/commands/cs_seen.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/commands/cs_seen.cpp b/modules/commands/cs_seen.cpp
index 8466cf82c..0143f50d6 100644
--- a/modules/commands/cs_seen.cpp
+++ b/modules/commands/cs_seen.cpp
@@ -346,7 +346,8 @@ class CSSeen : public Module
void OnUserConnect(dynamic_reference<User> &u, bool &exempt) anope_override
{
- UpdateUser(u, NEW, u->nick, "", "", "");
+ if (u)
+ UpdateUser(u, NEW, u->nick, "", "", "");
}
void OnUserNickChange(User *u, const Anope::string &oldnick) anope_override