summaryrefslogtreecommitdiff
path: root/src/irc
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-11-17 14:20:17 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-11-17 14:20:17 +0000
commit000328d9e678d1bd45849785566fdaae666e6368 (patch)
tree619f4b2e03b2e64cfe46fe587bfb8e00de30c913 /src/irc
parent81c0ddeedf6fd33a4df131344900103bf8287945 (diff)
downloadirssi-000328d9e678d1bd45849785566fdaae666e6368.zip
329 event reply for MODE #channel shouldn't go to "chanquery abort", but
we'd rather just want to print it. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2042 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc')
-rw-r--r--src/irc/core/channels-query.c4
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;