From cef8ec250816303df1b2cd583b8cfe45f09aa7e0 Mon Sep 17 00:00:00 2001 From: Roman Volosovskyi Date: Wed, 15 Sep 2021 11:00:19 +0300 Subject: [PATCH] Allow to retreive profile updates after removing contact --- VERSION | 2 +- protocol/messenger_chats.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 2a265534e..1308ddab9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.88.1 +0.88.2 diff --git a/protocol/messenger_chats.go b/protocol/messenger_chats.go index aa567e791..665eeec2d 100644 --- a/protocol/messenger_chats.go +++ b/protocol/messenger_chats.go @@ -314,7 +314,7 @@ func (m *Messenger) deactivateChat(chatID string) (*MessengerResponse, error) { // We re-register as our options have changed and we don't want to // receive PN from mentions in this chat anymore - if chat.Public() { + if chat.Public() || chat.ProfileUpdates() { err := m.reregisterForPushNotifications() if err != nil { return nil, err