]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
push-notification: Fix mailbox unsubscribe event
authorAki Tuomi <aki.tuomi@dovecot.fi>
Wed, 14 Mar 2018 18:05:29 +0000 (20:05 +0200)
committerVille Savolainen <ville.savolainen@dovecot.fi>
Wed, 14 Nov 2018 12:01:53 +0000 (14:01 +0200)
Subscribe should be FALSE here.

src/plugins/push-notification/push-notification-event-mailboxunsubscribe.c

index 4dd7ddead903e79aafeda04385a4c6f302ca49ff..a945b2b66eda030e2202de369b1242824f9abdee 100644 (file)
@@ -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);
 }