2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 06:35:14 +00:00

Update API scheme.

This commit is contained in:
John Preston
2021-02-12 14:59:51 +04:00
parent 18d62c070d
commit 73ae29ae25
7 changed files with 30 additions and 17 deletions

View File

@@ -607,6 +607,7 @@ void Histories::deleteAllMessages(
}).send();
} else if (channel) {
return session().api().request(MTPchannels_DeleteHistory(
MTP_flags(0),
channel->inputChannel,
MTP_int(deleteTillId)
)).done([=](const MTPBool &result) {

View File

@@ -48,7 +48,8 @@ MTPMessage PrepareMessage(const MTPMessage &message, MsgId id) {
data.vpeer_id(),
data.vreply_to() ? *data.vreply_to() : MTPMessageReplyHeader(),
data.vdate(),
data.vaction());
data.vaction(),
MTP_int(data.vttl_period().value_or_empty()));
}, [&](const MTPDmessage &data) {
return MTP_message(
MTP_flags(data.vflags().v | MTPDmessage::Flag::f_from_scheduled),