mirror of
https://github.com/tdlight-team/tdlight-telegram-bot-api.git
synced 2025-01-11 12:35:51 +01:00
Support custom_emoji entities.
This commit is contained in:
parent
4be79ff78c
commit
4a7d515d94
@ -461,6 +461,12 @@ class Client::JsonEntity final : public Jsonable {
|
|||||||
object("user", JsonUser(entity->user_id_, client_));
|
object("user", JsonUser(entity->user_id_, client_));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case td_api::textEntityTypeCustomEmoji::ID: {
|
||||||
|
auto entity = static_cast<const td_api::textEntityTypeCustomEmoji *>(entity_->type_.get());
|
||||||
|
object("type", "custom_emoji");
|
||||||
|
object("custom_emoji_id", td::to_string(entity->custom_emoji_id_));
|
||||||
|
break;
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
UNREACHABLE();
|
UNREACHABLE();
|
||||||
}
|
}
|
||||||
@ -481,8 +487,7 @@ class Client::JsonVectorEntities final : public Jsonable {
|
|||||||
for (auto &entity : entities_) {
|
for (auto &entity : entities_) {
|
||||||
auto entity_type = entity->type_->get_id();
|
auto entity_type = entity->type_->get_id();
|
||||||
if (entity_type != td_api::textEntityTypeBankCardNumber::ID &&
|
if (entity_type != td_api::textEntityTypeBankCardNumber::ID &&
|
||||||
entity_type != td_api::textEntityTypeMediaTimestamp::ID &&
|
entity_type != td_api::textEntityTypeMediaTimestamp::ID) {
|
||||||
entity_type != td_api::textEntityTypeCustomEmoji::ID) {
|
|
||||||
array << JsonEntity(entity.get(), client_);
|
array << JsonEntity(entity.get(), client_);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -6353,6 +6358,10 @@ td::Result<td_api::object_ptr<td_api::TextEntityType>> Client::get_text_entity_t
|
|||||||
TRY_RESULT(user_id, get_json_object_long_field(user.get_object(), "id", false));
|
TRY_RESULT(user_id, get_json_object_long_field(user.get_object(), "id", false));
|
||||||
return make_object<td_api::textEntityTypeMentionName>(user_id);
|
return make_object<td_api::textEntityTypeMentionName>(user_id);
|
||||||
}
|
}
|
||||||
|
if (type == "custom_emoji") {
|
||||||
|
TRY_RESULT(custom_emoji_id, get_json_object_long_field(object, "custom_emoji_id", false));
|
||||||
|
return make_object<td_api::textEntityTypeCustomEmoji>(custom_emoji_id);
|
||||||
|
}
|
||||||
if (type == "mention" || type == "hashtag" || type == "cashtag" || type == "bot_command" || type == "url" ||
|
if (type == "mention" || type == "hashtag" || type == "cashtag" || type == "bot_command" || type == "url" ||
|
||||||
type == "email" || type == "phone_number" || type == "bank_card_number") {
|
type == "email" || type == "phone_number" || type == "bank_card_number") {
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
Loading…
Reference in New Issue
Block a user