From 91ff74618038ec68d21edb21b5c5919b55e33a81 Mon Sep 17 00:00:00 2001 From: levlam Date: Tue, 4 Jan 2022 16:35:48 +0300 Subject: [PATCH] Add HAS_AVAILABLE_REACTIONS flags. --- td/telegram/ContactsManager.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/td/telegram/ContactsManager.h b/td/telegram/ContactsManager.h index 20f7a2659..05c8d09be 100644 --- a/td/telegram/ContactsManager.h +++ b/td/telegram/ContactsManager.h @@ -1050,6 +1050,7 @@ class ContactsManager final : public Actor { static constexpr int32 CHAT_FULL_FLAG_HAS_ACTIVE_GROUP_CALL = 1 << 12; static constexpr int32 CHAT_FULL_FLAG_HAS_MESSAGE_TTL = 1 << 14; static constexpr int32 CHAT_FULL_FLAG_HAS_PENDING_REQUEST_COUNT = 1 << 17; + static constexpr int32 CHAT_FULL_FLAG_HAS_AVAILABLE_REACTIONS = 1 << 18; static constexpr int32 CHANNEL_FLAG_USER_IS_CREATOR = 1 << 0; static constexpr int32 CHANNEL_FLAG_USER_HAS_LEFT = 1 << 2; @@ -1103,6 +1104,7 @@ class ContactsManager final : public Actor { static constexpr int32 CHANNEL_FULL_FLAG_HAS_MESSAGE_TTL = 1 << 24; static constexpr int32 CHANNEL_FULL_FLAG_HAS_PENDING_REQUEST_COUNT = 1 << 28; static constexpr int32 CHANNEL_FULL_FLAG_HAS_DEFAULT_SEND_AS = 1 << 29; + static constexpr int32 CHANNEL_FULL_FLAG_HAS_AVAILABLE_REACTIONS = 1 << 30; static constexpr int32 CHAT_INVITE_FLAG_IS_CHANNEL = 1 << 0; static constexpr int32 CHAT_INVITE_FLAG_IS_BROADCAST = 1 << 1;