mirror of
https://github.com/PaiGramTeam/telegram-bot-api.git
synced 2024-11-16 04:35:33 +00:00
Add GiveawayWinners.prize_star_count.
This commit is contained in:
parent
1548e96656
commit
c08e6b3b84
@ -2515,8 +2515,13 @@ class Client::JsonGiveawayWinners final : public td::Jsonable {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case td_api::giveawayPrizeStars::ID:
|
case td_api::giveawayPrizeStars::ID: {
|
||||||
|
auto star_count = static_cast<const td_api::giveawayPrizeStars *>(giveaway_winners_->prize_.get())->star_count_;
|
||||||
|
if (star_count > 0) {
|
||||||
|
object("prize_star_count", star_count);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
UNREACHABLE();
|
UNREACHABLE();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user