diff options
-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); |