From 68463d3e8b388f139b2c1227333b5943cf5be65a Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 24 May 2021 11:41:04 +0200 Subject: [PATCH] Pass-through the BOT ISUPPORT token References: https://github.com/ircv3/ircv3-specifications/pull/439 --- downstream.go | 1 + 1 file changed, 1 insertion(+) diff --git a/downstream.go b/downstream.go index a4f2da8..cc9bfca 100644 --- a/downstream.go +++ b/downstream.go @@ -87,6 +87,7 @@ var needAllDownstreamCaps = map[string]string{ // This is only effective in single-upstream mode. var passthroughIsupport = map[string]bool{ "AWAYLEN": true, + "BOT": true, "CHANLIMIT": true, "CHANMODES": true, "CHANNELLEN": true,