mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-08-02 02:07:54 +00:00
Update API scheme to layer 197.
This commit is contained in:
@@ -59,6 +59,24 @@ struct FileReferenceAccumulator {
|
||||
push(data.vdocuments());
|
||||
}, [&](const MTPDwebPageAttributeStickerSet &data) {
|
||||
push(data.vstickers());
|
||||
}, [&](const MTPDwebPageAttributeUniqueStarGift &data) {
|
||||
push(data.vgift());
|
||||
});
|
||||
}
|
||||
void push(const MTPStarGift &data) {
|
||||
data.match([&](const MTPDstarGift &data) {
|
||||
push(data.vsticker());
|
||||
}, [&](const MTPDstarGiftUnique &data) {
|
||||
push(data.vattributes());
|
||||
});
|
||||
}
|
||||
void push(const MTPStarGiftAttribute &data) {
|
||||
data.match([&](const MTPDstarGiftAttributeModel &data) {
|
||||
push(data.vdocument());
|
||||
}, [&](const MTPDstarGiftAttributePattern &data) {
|
||||
push(data.vdocument());
|
||||
}, [&](const MTPDstarGiftAttributeBackdrop &data) {
|
||||
}, [&](const MTPDstarGiftAttributeOriginalDetails &data) {
|
||||
});
|
||||
}
|
||||
void push(const MTPWebPage &data) {
|
||||
|
||||
Reference in New Issue
Block a user