From 0812e54db0784fb2e1cdcd2b636abd9c8fe3bd0d 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); } -- 2.47.3