Skip to content

Commit

Permalink
push-notification: Fix mailbox unsubscribe event
Browse files Browse the repository at this point in the history
Subscribe should be FALSE here.
  • Loading branch information
cmouse committed May 31, 2018
1 parent 5718300 commit 0485da1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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);
}
Expand Down

0 comments on commit 0485da1

Please sign in to comment.