diff --git a/ChangeLog.adoc b/ChangeLog.adoc index 84d6b3227..a68c4ec83 100644 --- a/ChangeLog.adoc +++ b/ChangeLog.adoc @@ -16,6 +16,7 @@ For a list of important changes that require manual actions, please look at rele Bug fixes:: * 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) [[v4.0.3]] == Version 4.0.3 (2023-08-08) 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,