diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-11-07 21:50:12 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-11-07 21:50:12 +0100 |
commit | 515d4241ad471ef1ca4d012ba4c8e5dfc79f3488 (patch) | |
tree | d8c6ee554b3861c9b3ba5df9bacf200450a99db4 /src/plugins/irc | |
parent | 977fd3b6f782f57df67c36c9f71eb473ba9b7906 (diff) | |
download | weechat-515d4241ad471ef1ca4d012ba4c8e5dfc79f3488.zip |
irc: fix target buffer of IRC message 337 (whois reply: "is hiding their idle time")
Diffstat (limited to 'src/plugins/irc')
-rw-r--r-- | src/plugins/irc/irc-protocol.c | 3 |
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 */ |