From 0485da1ca09b366f50bb4138d8b145b52fa89f63 Mon Sep 17 00:00:00 2001 From: Aki Tuomi Date: Wed, 14 Mar 2018 20:05:29 +0200 Subject: [PATCH] push-notification: Fix mailbox unsubscribe event Subscribe should be FALSE here. --- .../push-notification-event-mailboxunsubscribe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/push-notification/push-notification-event-mailboxunsubscribe.c b/src/plugins/push-notification/push-notification-event-mailboxunsubscribe.c index 4dd7ddead9..a945b2b66e 100644 --- a/src/plugins/push-notification/push-notification-event-mailboxunsubscribe.c +++ b/src/plugins/push-notification/push-notification-event-mailboxunsubscribe.c @@ -27,7 +27,7 @@ static void push_notification_event_mailboxunsubscribe_event( data = p_new(ptxn->pool, struct push_notification_event_mailboxunsubscribe_data, 1); - data->subscribe = TRUE; + data->subscribe = FALSE; push_notification_txn_mbox_set_eventdata(ptxn, mbox, ec, data); }