diff options
author | June McEnroe <june@causal.agency> | 2020-08-13 12:26:33 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-08-13 12:26:33 -0400 |
commit | a9d4469f84bf935bc3483f82057133f82383f0ea (patch) | |
tree | 2ed9a6bda232d08cf40f8154226ebbfb07be2695 /contrib | |
parent | Fix unintended interception of NICK after registration (diff) | |
download | pounce-a9d4469f84bf935bc3483f82057133f82383f0ea.tar.gz pounce-a9d4469f84bf935bc3483f82057133f82383f0ea.zip |
contrib/palaver: Don't set channel for PMs
Diffstat (limited to '')
-rw-r--r-- | contrib/palaver/notify.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/palaver/notify.c b/contrib/palaver/notify.c index 7ca650d..2d2d0bb 100644 --- a/contrib/palaver/notify.c +++ b/contrib/palaver/notify.c @@ -537,8 +537,10 @@ static void jsonBody( fprintf(file, "{\"badge\":%d", badge); fprintf(file, ",\"sender\":"); jsonString(file, msg->nick); - fprintf(file, ",\"channel\":"); - jsonString(file, msg->params[0]); + if (strcmp(msg->params[0], nick)) { + fprintf(file, ",\"channel\":"); + jsonString(file, msg->params[0]); + } if (network) { fprintf(file, ",\"network\":"); jsonString(file, network); |