1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 10:06:38 +02:00

Merge branch '2.0' into 2.1.

This commit is contained in:
Sadie Powell
2024-07-19 01:40:53 +01:00
+5 -2
View File
@@ -565,8 +565,11 @@ public:
void SendLogin(User *u, NickAlias *na) override
{
/* InspIRCd uses an account to bypass chmode +R, not umode +r, so we can't send this here */
if (!na->nc->HasExt("UNCONFIRMED"))
SendAccount(u->GetUID(), na);
if (na->nc->HasExt("UNCONFIRMED"))
return;
IRCD->SendVHost(u, na->GetVHostIdent(), na->GetVHostHost());
SendAccount(u->GetUID(), na);
}
void SendLogout(User *u) override