From 79be775f2bf653a886b351e3552d4c8cbdb35f26 Mon Sep 17 00:00:00 2001 From: Ailin Nemui Date: Fri, 26 Feb 2021 14:28:37 +0100 Subject: [PATCH] queue the who command on join --- src/irc/core/channels-query.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/irc/core/channels-query.c b/src/irc/core/channels-query.c index dc29e914..ad8d898c 100644 --- a/src/irc/core/channels-query.c +++ b/src/irc/core/channels-query.c @@ -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);