2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-30 22:16:14 +00:00

Fix build with the new scheme.

This commit is contained in:
John Preston
2022-06-14 19:16:18 +04:00
parent c9bd0ab725
commit ce7b6fe17a
2 changed files with 15 additions and 7 deletions

View File

@@ -137,11 +137,13 @@ void UserData::setBotInfo(const MTPBotInfo &info) {
botInfo->text = Ui::Text::String(st::msgMinWidth);
}
auto commands = ranges::views::all(
d.vcommands().v
) | ranges::views::transform(
Data::BotCommandFromTL
) | ranges::to_vector;
auto commands = d.vcommands()
? ranges::views::all(
d.vcommands()->v
) | ranges::views::transform(
Data::BotCommandFromTL
) | ranges::to_vector
: std::vector<Data::BotCommand>();
const auto changedCommands = !ranges::equal(
botInfo->commands,
commands);