Added ephemeral messages data component with receive and send support.

This commit is contained in:
23rd
2026-06-11 13:21:40 +03:00
committed by John Preston
parent d5141215df
commit c511e828b3
16 changed files with 645 additions and 10 deletions
@@ -14,6 +14,7 @@ BotCommand BotCommandFromTL(const MTPBotCommand &result) {
return BotCommand {
.command = qs(data.vcommand().v),
.description = qs(data.vdescription().v),
.ephemeral = data.is_ephemeral(),
};
});
}