1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-07 02:54:19 -04:00

queue the who command on join

This commit is contained in:
Ailin Nemui 2021-02-26 14:28:37 +01:00
parent b11f973345
commit 79be775f2b

View File

@ -250,7 +250,8 @@ static void query_send(IRC_SERVER_REC *server, int query)
cmd = NULL;
}
irc_send_cmd(server, cmd);
/* queue the command */
irc_send_cmd_full(server, cmd, FALSE, FALSE, FALSE);
g_free(chanstr);
g_free(chanstr_commas);