diff options
author | Adam <Adam@anope.org> | 2014-10-05 19:53:48 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-10-06 14:06:36 -0400 |
commit | 829ef1b7bd957425e4c1fd03abad404acfeb36ba (patch) | |
tree | addf32006791d9a6bd1fc501218c566561c62a35 /modules/commands/ns_recover.cpp | |
parent | b068874f406de030af3857d0ec7faa182c85d7ca (diff) |
Clear pending collided state on release, fixes colliding users using recover into enforcers
Diffstat (limited to 'modules/commands/ns_recover.cpp')
-rw-r--r-- | modules/commands/ns_recover.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/commands/ns_recover.cpp b/modules/commands/ns_recover.cpp index f4945a639..a412ad96a 100644 --- a/modules/commands/ns_recover.cpp +++ b/modules/commands/ns_recover.cpp @@ -95,7 +95,8 @@ class NSRecoverRequest : public IdentifyRequest if (IRCD->CanSVSNick) { /* If we can svsnick then release our hold and svsnick the user using the command */ - nickserv->Release(na); + if (nickserv) + nickserv->Release(na); IRCD->SendForceNickChange(source.GetUser(), GetAccount(), Anope::CurTime); source.Reply(_("You have regained control of \002%s\002 and are now identified as \002%s\002."), GetAccount().c_str(), na->nc->display.c_str()); } |