diff --git a/ChangeLog.adoc b/ChangeLog.adoc index a2d52a239..9e5f811c6 100644 --- a/ChangeLog.adoc +++ b/ChangeLog.adoc @@ -40,6 +40,7 @@ Bug fixes:: * irc: add missing "account-tag" in list of supported capabilities * irc: add channel in "autojoin" server option only when the channel is actually joined (issue #1990) * irc: add missing tags on multiline messages (issue #1987) + * irc: fix redirection of command `/list` when the reply doesn't start with message 321 (start of /list) * script: fix cursor position after `/script list -i` or `/script list -il` * script: fix buffer used by command `/script list -i|-il|-o|-ol` diff --git a/src/plugins/irc/irc-redirect.c b/src/plugins/irc/irc-redirect.c index 3f51d6b72..7102b4819 100644 --- a/src/plugins/irc/irc-redirect.c +++ b/src/plugins/irc/irc-redirect.c @@ -55,7 +55,7 @@ struct t_irc_redirect_pattern irc_redirect_patterns_default[] = * stop: 323: end of /list * extra: - */ - "321", + "321,322", "323", NULL, NULL, NULL,