1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-30 06:45:25 +00:00

Merge pull request #918 from dequis/unhandled-cap-subcommand-list

irc-cap: Don't show warning on CAP LIST response
This commit is contained in:
ailin-nemui 2018-08-26 21:27:12 +02:00 committed by GitHub
commit 73a89c2a6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -276,6 +276,9 @@ static void event_cap (IRC_SERVER_REC *server, char *args, char *nick, char *add
g_free(val);
}
}
else if (!g_ascii_strcasecmp(evt, "LIST")) {
/* do nothing, fe-cap will handle it */
}
else {
g_warning("Unhandled CAP subcommand %s", evt);
}