From 89a50d772c29bc898d3f64b6e78584ead59c5108 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Mon, 13 May 2019 00:40:59 -0400 Subject: [PATCH] WHO should leave the client idle Some clients seem to automatically poll for channel state --- irc/commands.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/irc/commands.go b/irc/commands.go index e058a3e7..c505721b 100644 --- a/irc/commands.go +++ b/irc/commands.go @@ -309,8 +309,9 @@ func init() { minParams: 4, }, "WHO": { - handler: whoHandler, - minParams: 1, + handler: whoHandler, + minParams: 1, + leaveClientIdle: true, }, "WHOIS": { handler: whoisHandler,