diff options
author | June McEnroe <june@causal.agency> | 2020-04-07 13:18:42 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-04-07 13:18:42 -0400 |
commit | 73bda18110cfb52eecf7ad1089cd99d68f73e568 (patch) | |
tree | 6286531be4380ee6a92541bb262d2fecee896326 /chat.h | |
parent | Reset unreadSoft only on first unreadHard (diff) | |
download | catgirl-73bda18110cfb52eecf7ad1089cd99d68f73e568.tar.gz catgirl-73bda18110cfb52eecf7ad1089cd99d68f73e568.zip |
Check ignores against id
Otherwise they do not work correctly for QUIT and NICK. This also lets you ignore private messages only by putting the nick in the third field.
Diffstat (limited to '')
-rw-r--r-- | chat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chat.h b/chat.h index 764f8ec..e0266ef 100644 --- a/chat.h +++ b/chat.h @@ -269,7 +269,7 @@ extern struct Ignore { } ignore; const char *ignoreAdd(const char *pattern); bool ignoreRemove(const char *pattern); -enum Heat ignoreCheck(enum Heat heat, const struct Message *msg); +enum Heat ignoreCheck(enum Heat heat, uint id, const struct Message *msg); extern bool logEnable; void logFormat(uint id, const time_t *time, const char *format, ...) |