]> jfr.im git - irc/DALnet/bahamut.git/commitdiff
Change stripcolors() to strip ASCII CODE 1 too (CTCPs & actions)
authorKobi Shmueli <redacted>
Mon, 29 Oct 2018 05:08:03 +0000 (07:08 +0200)
committerKobi Shmueli <redacted>
Mon, 29 Oct 2018 05:08:03 +0000 (07:08 +0200)
src/spamfilter.c

index b93c64c38003687bccdd7cab579867a2cd583dc8..d20b8936303e8e4500e0f37b79d878184c70ba9e 100644 (file)
@@ -490,7 +490,7 @@ void stripcolors(char new[512], char *org)
             while(IsDigit(*org) || *org==',')
                 org++;
         }
-        if(*org<32 && *org!=1)
+        if(*org<32)
             continue;
         new[len++] = *org;
     }