1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 14:13:12 +02:00

Fixed sending account data for unconfirmed accounts

This commit is contained in:
Adam
2011-08-09 17:21:28 -04:00
parent 6574bca404
commit fa9f6a34ce
3 changed files with 10 additions and 3 deletions
+2 -1
View File
@@ -204,8 +204,9 @@ class CommandNSRegister : public Command
source.Reply(_("If you do not confirm your email address within %s your account will expire."), duration(Config->NSUnconfirmedExpire).c_str());
}
}
else
ircdproto->SendAccountLogin(u, u->Account());
ircdproto->SendAccountLogin(u, u->Account());
ircdproto->SetAutoIdentificationToken(u);
u->lastnickreg = Anope::CurTime;