From 1c3235b402b858968f72e25c592919cce35cdf0a Mon Sep 17 00:00:00 2001 From: levlam Date: Mon, 31 Oct 2022 17:14:23 +0300 Subject: [PATCH] Add Message.is_topic_message. --- telegram-bot-api/Client.cpp | 4 ++++ telegram-bot-api/Client.h | 1 + 2 files changed, 5 insertions(+) diff --git a/telegram-bot-api/Client.cpp b/telegram-bot-api/Client.cpp index f6d8ebb..65df636 100644 --- a/telegram-bot-api/Client.cpp +++ b/telegram-bot-api/Client.cpp @@ -2077,6 +2077,9 @@ void Client::JsonMessage::store(JsonValueScope *scope) const { if (!message_->can_be_saved) { object("has_protected_content", td::JsonTrue()); } + if (message_->is_topic_message) { + object("is_topic_message", td::JsonTrue()); + } } class Client::JsonDeletedMessage final : public Jsonable { @@ -10430,6 +10433,7 @@ Client::FullMessageId Client::add_message(object_ptr &&message, } message_info->can_be_saved = message->can_be_saved_; + message_info->is_topic_message = message->is_topic_message_; message_info->author_signature = std::move(message->author_signature_); if (message->reply_in_chat_id_ != chat_id && message->reply_to_message_id_ != 0) { diff --git a/telegram-bot-api/Client.h b/telegram-bot-api/Client.h index 5e79e27..fbf98b8 100644 --- a/telegram-bot-api/Client.h +++ b/telegram-bot-api/Client.h @@ -749,6 +749,7 @@ class Client final : public WebhookActor::Callback { bool can_be_saved = false; bool is_automatic_forward = false; + bool is_topic_message = false; mutable bool is_reply_to_message_deleted = false; mutable bool is_content_changed = false; };