From 59dfa05d13074879115230ac818afc2b48780f93 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 16 Jan 2023 16:46:46 +0100 Subject: [PATCH] downstream: set empty CHANTYPES for bouncer connection --- downstream.go | 1 + 1 file changed, 1 insertion(+) diff --git a/downstream.go b/downstream.go index 19041c6..fccca9f 100644 --- a/downstream.go +++ b/downstream.go @@ -1397,6 +1397,7 @@ func (dc *downstreamConn) welcome(ctx context.Context) error { } if dc.network == nil { isupport = append(isupport, "WHOX") + isupport = append(isupport, "CHANTYPES=") // channels are not supported } if dc.caps.IsEnabled("soju.im/webpush") { isupport = append(isupport, "VAPID="+dc.srv.webPush.VAPIDKeys.Public)