diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-10-16 22:59:12 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-10-17 21:28:31 +0200 |
commit | f1cb767001dc4fe9e6cd0bc6bea4fb9342a848c9 (patch) | |
tree | 3aea0a4eecc111cdbfcfe3c3fdaa0964bae45106 | |
parent | 634eac455d74e66d6d343be16e33b552eec8df78 (diff) | |
download | weechat-f1cb767001dc4fe9e6cd0bc6bea4fb9342a848c9.zip |
irc: keep trailing spaces in received message 322
-rw-r--r-- | src/plugins/irc/irc-protocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c index d18e685e5..8d5c64e15 100644 --- a/src/plugins/irc/irc-protocol.c +++ b/src/plugins/irc/irc-protocol.c @@ -7034,7 +7034,7 @@ irc_protocol_recv_command (struct t_irc_server *server, IRCB(319, 1, 0, whois_nick_msg), /* whois (channels) */ IRCB(320, 1, 0, whois_nick_msg), /* whois (identified user) */ IRCB(321, 1, 0, 321), /* /list start */ - IRCB(322, 1, 0, 322), /* channel (for /list) */ + IRCB(322, 1, 1, 322), /* channel (for /list) */ IRCB(323, 1, 0, 323), /* end of /list */ IRCB(324, 1, 0, 324), /* channel mode */ IRCB(326, 1, 0, whois_nick_msg), /* whois (has oper privs) */ |