From 0fd81f38fade7a808a9f80a18b808cc83fcfe21b Mon Sep 17 00:00:00 2001 From: Hubert Hirtz Date: Sat, 9 Oct 2021 12:46:00 +0200 Subject: [PATCH] Dismiss TAGMSGs directed to BouncerServ --- downstream.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/downstream.go b/downstream.go index 697b661..c4f779f 100644 --- a/downstream.go +++ b/downstream.go @@ -2048,6 +2048,10 @@ func (dc *downstreamConn) handleMessageRegistered(msg *irc.Message) error { tags := copyClientTags(msg.Tags) for _, name := range strings.Split(targetsStr, ",") { + if casemapASCII(name) == serviceNickCM { + continue + } + uc, upstreamName, err := dc.unmarshalEntity(name) if err != nil { return err