From abbb602463f05c77e695f15d63a323eddc242f7d Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Thu, 6 Feb 2025 19:01:10 +0000 Subject: [PATCH] Fix SASL on UnrealIRCd. --- modules/protocol/unrealircd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/protocol/unrealircd.cpp b/modules/protocol/unrealircd.cpp index fa5f72f95..aed578c3e 100644 --- a/modules/protocol/unrealircd.cpp +++ b/modules/protocol/unrealircd.cpp @@ -403,7 +403,7 @@ private: auto newparams = message.data; newparams.insert(newparams.begin(), { distmask, message.target, message.type }); - Uplink::SendInternal({}, BotInfo::Find(message.source), "ENCAP", newparams); + Uplink::SendInternal({}, BotInfo::Find(message.source), "SASL", newparams); } void SendSVSLogin(const Anope::string &uid, NickAlias *na) override