diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/irc/core/channels-query.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/irc/core/channels-query.c b/src/irc/core/channels-query.c index 8b29b45a..42d98f84 100644 --- a/src/irc/core/channels-query.c +++ b/src/irc/core/channels-query.c @@ -218,10 +218,12 @@ static void query_send(IRC_SERVER_REC *server, int query) case CHANNEL_QUERY_MODE: cmd = g_strdup_printf("MODE %s", chanstr_commas); - /* the stop-event is received once for each channel */ + /* the stop-event is received once for each channel, + and we want to print 329 event (channel created). */ server_redirect_event(server, "mode channel", count, chanstr, -1, "chanquery abort", "event 324", "chanquery mode", + "event 329", "event 329", "", "chanquery abort", NULL); break; |