mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05: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:
commit
73a89c2a6d
@ -276,6 +276,9 @@ static void event_cap (IRC_SERVER_REC *server, char *args, char *nick, char *add
|
|||||||
g_free(val);
|
g_free(val);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (!g_ascii_strcasecmp(evt, "LIST")) {
|
||||||
|
/* do nothing, fe-cap will handle it */
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
g_warning("Unhandled CAP subcommand %s", evt);
|
g_warning("Unhandled CAP subcommand %s", evt);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user