Support expandable_blockquote entities.

This commit is contained in:
levlam 2024-05-21 12:39:13 +03:00
parent 70b9d04b58
commit 325dc5d293

View File

@ -523,6 +523,9 @@ class Client::JsonEntity final : public td::Jsonable {
case td_api::textEntityTypeBlockQuote::ID:
object("type", "blockquote");
break;
case td_api::textEntityTypeExpandableBlockQuote::ID:
object("type", "expandable_blockquote");
break;
default:
UNREACHABLE();
}
@ -542,8 +545,7 @@ class Client::JsonVectorEntities final : public td::Jsonable {
auto array = scope->enter_array();
for (auto &entity : entities_) {
auto entity_type = entity->type_->get_id();
if (entity_type != td_api::textEntityTypeExpandableBlockQuote::ID &&
entity_type != td_api::textEntityTypeBankCardNumber::ID &&
if (entity_type != td_api::textEntityTypeBankCardNumber::ID &&
entity_type != td_api::textEntityTypeMediaTimestamp::ID) {
array << JsonEntity(entity.get(), client_);
}
@ -8792,6 +8794,9 @@ td::Result<td_api::object_ptr<td_api::TextEntityType>> Client::get_text_entity_t
if (type == "blockquote") {
return make_object<td_api::textEntityTypeBlockQuote>();
}
if (type == "expandable_blockquote") {
return make_object<td_api::textEntityTypeExpandableBlockQuote>();
}
if (type == "mention" || type == "hashtag" || type == "cashtag" || type == "bot_command" || type == "url" ||
type == "email" || type == "phone_number" || type == "bank_card_number") {
return nullptr;