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

Unset the account id before the account name on InspIRCd.

This avoids the id being shown on the logout event.
This commit is contained in:
Sadie Powell
2020-10-12 17:47:41 +01:00
parent cdf147f351
commit 95f4e29edd
+1 -1
View File
@@ -411,8 +411,8 @@ class InspIRCd3Proto : public IRCDProto
void SendLogout(User *u) anope_override
{
UplinkSocket::Message(Me) << "METADATA " << u->GetUID() << " accountname :";
UplinkSocket::Message(Me) << "METADATA " << u->GetUID() << " accountid :";
UplinkSocket::Message(Me) << "METADATA " << u->GetUID() << " accountname :";
}
void SendChannel(Channel *c) anope_override