From f3d4c6bc63e1d25f5c35f1a87fe91087cd5d9923 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Thu, 9 Nov 2000 22:03:20 +0000 Subject: [PATCH] let actions pass through the proxy to clients, they're not "real" CTCPs.. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@828 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/irc/proxy/listen.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/irc/proxy/listen.c b/src/irc/proxy/listen.c index a595f112..2d34ec0b 100644 --- a/src/irc/proxy/listen.c +++ b/src/irc/proxy/listen.c @@ -356,7 +356,8 @@ static void sig_server_event(const char *line, IRC_SERVER_REC *server, if (g_strcasecmp(event, "event ping") == 0 || (g_strcasecmp(event, "event privmsg") == 0 && - strstr(args, " :\001") != NULL) || + strstr(args, " :\001") != NULL && + strstr(args, " :\001ACTION") == NULL) || (g_strcasecmp(event, "event notice") == 0 && strstr(args, " :\001IRSSILAG") != NULL)) { /* We want to answer ourself to PINGs and CTCPs,