From b7e8584260a3d8d4932883a4b590a5d11e493801 Mon Sep 17 00:00:00 2001 From: levlam Date: Tue, 27 Feb 2024 22:06:01 +0300 Subject: [PATCH] Remove QuickReplyMessage.is_copy. --- td/telegram/QuickReplyManager.cpp | 2 -- td/telegram/QuickReplyManager.h | 1 - 2 files changed, 3 deletions(-) diff --git a/td/telegram/QuickReplyManager.cpp b/td/telegram/QuickReplyManager.cpp index eb487cb06..346af0b60 100644 --- a/td/telegram/QuickReplyManager.cpp +++ b/td/telegram/QuickReplyManager.cpp @@ -136,7 +136,6 @@ void QuickReplyManager::QuickReplyMessage::store(StorerT &storer) const { STORE_FLAG(disable_notification); STORE_FLAG(noforwards); STORE_FLAG(invert_media); - STORE_FLAG(is_copy); STORE_FLAG(from_background); STORE_FLAG(disable_web_page_preview); STORE_FLAG(hide_via_bot); @@ -203,7 +202,6 @@ void QuickReplyManager::QuickReplyMessage::parse(ParserT &parser) { PARSE_FLAG(disable_notification); PARSE_FLAG(noforwards); PARSE_FLAG(invert_media); - PARSE_FLAG(is_copy); PARSE_FLAG(from_background); PARSE_FLAG(disable_web_page_preview); PARSE_FLAG(hide_via_bot); diff --git a/td/telegram/QuickReplyManager.h b/td/telegram/QuickReplyManager.h index 03629e2f0..20ee35c92 100644 --- a/td/telegram/QuickReplyManager.h +++ b/td/telegram/QuickReplyManager.h @@ -67,7 +67,6 @@ class QuickReplyManager final : public Actor { bool noforwards = false; bool invert_media = false; - bool is_copy = false; // for send_message bool from_background = false; // for send_message bool disable_web_page_preview = false; // for send_message bool hide_via_bot = false; // for resend_message