1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

irc-cap: Don't show warning on CAP LIST response

This commit is contained in:
dequis 2018-08-23 03:22:30 -03:00
parent 19d84bc16e
commit 24f1ed7edb

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);
}