diff options
author | Adam <Adam@anope.org> | 2018-02-10 08:36:03 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2018-02-10 08:36:12 -0500 |
commit | 1baf774647f138a080b38aab6beeb8626f32abed (patch) | |
tree | dbd67ac86768a1b881156476c94d2d87013226a6 | |
parent | 772410d974c0b9ece7ef308e81952bd66f2ba6db (diff) |
ns_group: send login on successful group too
-rw-r--r-- | modules/commands/ns_group.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/commands/ns_group.cpp b/modules/commands/ns_group.cpp index abe0303cb..fb98cebef 100644 --- a/modules/commands/ns_group.cpp +++ b/modules/commands/ns_group.cpp @@ -55,6 +55,7 @@ class NSGroupRequest : public IdentifyRequest if (u != NULL) { + IRCD->SendLogin(u, na); // protocol modules prevent this on unconfirmed accounts u->Login(target->nc); FOREACH_MOD(OnNickGroup, (u, target)); } |