summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2023-11-07 21:50:12 +0100
committerSébastien Helleu <flashcode@flashtux.org>2023-11-07 21:50:12 +0100
commit515d4241ad471ef1ca4d012ba4c8e5dfc79f3488 (patch)
treed8c6ee554b3861c9b3ba5df9bacf200450a99db4 /src
parent977fd3b6f782f57df67c36c9f71eb473ba9b7906 (diff)
downloadweechat-515d4241ad471ef1ca4d012ba4c8e5dfc79f3488.zip
irc: fix target buffer of IRC message 337 (whois reply: "is hiding their idle time")
Diffstat (limited to 'src')
-rw-r--r--src/plugins/irc/irc-protocol.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c
index 345bcb61d..68fe3249d 100644
--- a/src/plugins/irc/irc-protocol.c
+++ b/src/plugins/irc/irc-protocol.c
@@ -8026,7 +8026,8 @@ irc_protocol_recv_command (struct t_irc_server *server,
IRCB(331, 1, 0, 331), /* no topic for channel */
IRCB(332, 0, 1, 332), /* topic of channel */
IRCB(333, 1, 0, 333), /* topic info (nick/date) */
- IRCB(335, 1, 0, whois_nick_msg), /* is a bot on */
+ IRCB(335, 1, 0, whois_nick_msg), /* whois (is a bot on) */
+ IRCB(337, 1, 0, whois_nick_msg), /* whois (is hiding idle time) */
IRCB(338, 1, 0, 338), /* whois (host) */
IRCB(341, 1, 0, 341), /* inviting */
IRCB(343, 1, 0, 330_343), /* is opered as */