Add Chat.active_usernames.

This commit is contained in:
levlam 2022-10-31 15:49:53 +03:00
parent 1270c70499
commit 1ba4392648
1 changed files with 8 additions and 0 deletions

View File

@ -664,6 +664,10 @@ class Client::JsonChat final : public Jsonable {
}
object("type", "private");
if (is_full_) {
if (!user_info->active_usernames.empty()) {
object("active_usernames", td::json_array(user_info->active_usernames,
[](Slice username) { return td::JsonString(username); }));
}
if (!user_info->bio.empty()) {
object("bio", user_info->bio);
}
@ -720,6 +724,10 @@ class Client::JsonChat final : public Jsonable {
object("type", "channel");
}
if (is_full_) {
if (!supergroup_info->active_usernames.empty()) {
object("active_usernames", td::json_array(supergroup_info->active_usernames,
[](Slice username) { return td::JsonString(username); }));
}
if (!supergroup_info->description.empty()) {
object("description", supergroup_info->description);
}