mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 12:23:37 +02:00
Show all nicks instead of just the first in an /accept * listing.
Bug #704 git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5099 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
5c6ebb9f93
commit
60113c0b31
1 changed files with 2 additions and 1 deletions
|
|
@ -205,7 +205,8 @@ static void event_accept_list(IRC_SERVER_REC *server, const char *data)
|
|||
g_return_if_fail(data != NULL);
|
||||
g_return_if_fail(server != NULL);
|
||||
|
||||
params = event_get_params(data, 2, NULL, &accepted);
|
||||
params = event_get_params(data, 2 | PARAM_FLAG_GETREST,
|
||||
NULL, &accepted);
|
||||
printformat(server, NULL, MSGLEVEL_CRAP, IRCTXT_ACCEPT_LIST, accepted);
|
||||
g_free(params);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue