From e39b4fae830760a88a460d8b2b409a3e8a95fd4d Mon Sep 17 00:00:00 2001 From: levlam Date: Thu, 9 May 2019 22:52:37 +0300 Subject: [PATCH] Fix SESSION_REVOKE push handling. GitOrigin-RevId: 364cddfa123bb8c9cfe300c58ea37ef3d5570c36 --- td/telegram/NotificationManager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/td/telegram/NotificationManager.cpp b/td/telegram/NotificationManager.cpp index 4e0a71d7b..6472728d7 100644 --- a/td/telegram/NotificationManager.cpp +++ b/td/telegram/NotificationManager.cpp @@ -3011,6 +3011,7 @@ Status NotificationManager::process_push_notification_payload(string payload, bo } else { LOG(ERROR) << "Receive unencrypted SESSION_REVOKE push notification"; } + promise.set_value(Unit()); return Status::OK(); }