From 8aaa70a05ad566db7099bb55dd74b60784576b57 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 26 Mar 2019 10:38:54 +0400 Subject: [PATCH] Fix infinite group set requests on bad API responses. --- .../chat_helpers/stickers_list_widget.cpp | 67 +++++++++++-------- .../chat_helpers/stickers_list_widget.h | 1 + 2 files changed, 39 insertions(+), 29 deletions(-) diff --git a/Telegram/SourceFiles/chat_helpers/stickers_list_widget.cpp b/Telegram/SourceFiles/chat_helpers/stickers_list_widget.cpp index cb6e63023..cc8a1f915 100644 --- a/Telegram/SourceFiles/chat_helpers/stickers_list_widget.cpp +++ b/Telegram/SourceFiles/chat_helpers/stickers_list_widget.cpp @@ -2015,38 +2015,47 @@ void StickersListWidget::refreshMegagroupStickers(GroupStickersPlace place) { if (canEdit && hidden) { removeHiddenForGroup(); } - if (_megagroupSet->mgInfo->stickerSet.type() == mtpc_inputStickerSetID) { - auto &set = _megagroupSet->mgInfo->stickerSet.c_inputStickerSetID(); - auto &sets = Auth().data().stickerSets(); - auto it = sets.constFind(set.vid.v); - if (it != sets.cend()) { - auto isInstalled = (it->flags & MTPDstickerSet::Flag::f_installed_date) - && !(it->flags & MTPDstickerSet::Flag::f_archived); - if (isInstalled && !canEdit) { - removeHiddenForGroup(); - } else if (isShownHere(hidden)) { - const auto shortName = QString(); - const auto thumbnail = ImagePtr(); - const auto externalLayout = false; - _mySets.emplace_back( - Stickers::MegagroupSetId, - MTPDstickerSet_ClientFlag::f_special | 0, - lang(lng_group_stickers), - shortName, - thumbnail, - externalLayout, - it->count, - it->stickers); - } - return; - } - } - if (!isShownHere(hidden)) { + if (_megagroupSet->mgInfo->stickerSet.type() != mtpc_inputStickerSetID) { return; } - request(MTPmessages_GetStickerSet(_megagroupSet->mgInfo->stickerSet)).done([this](const MTPmessages_StickerSet &result) { - if (auto set = Stickers::FeedSetFull(result)) { + auto &set = _megagroupSet->mgInfo->stickerSet.c_inputStickerSetID(); + auto &sets = Auth().data().stickerSets(); + auto it = sets.constFind(set.vid.v); + if (it != sets.cend()) { + auto isInstalled = (it->flags & MTPDstickerSet::Flag::f_installed_date) + && !(it->flags & MTPDstickerSet::Flag::f_archived); + if (isInstalled && !canEdit) { + removeHiddenForGroup(); + } else if (isShownHere(hidden)) { + const auto shortName = QString(); + const auto thumbnail = ImagePtr(); + const auto externalLayout = false; + _mySets.emplace_back( + Stickers::MegagroupSetId, + MTPDstickerSet_ClientFlag::f_special | 0, + lang(lng_group_stickers), + shortName, + thumbnail, + externalLayout, + it->count, + it->stickers); + } + return; + } else if (!isShownHere(hidden) + || _megagroupSetIdRequested == set.vid.v) { + return; + } + _megagroupSetIdRequested = set.vid.v; + request(MTPmessages_GetStickerSet( + _megagroupSet->mgInfo->stickerSet + )).done([=](const MTPmessages_StickerSet &result) { + if (const auto set = Stickers::FeedSetFull(result)) { refreshStickers(); + if (set->id == _megagroupSetIdRequested) { + _megagroupSetIdRequested = 0; + } else { + LOG(("API Error: Got different set.")); + } } }).send(); } diff --git a/Telegram/SourceFiles/chat_helpers/stickers_list_widget.h b/Telegram/SourceFiles/chat_helpers/stickers_list_widget.h index d0fcf6f33..3251cf80c 100644 --- a/Telegram/SourceFiles/chat_helpers/stickers_list_widget.h +++ b/Telegram/SourceFiles/chat_helpers/stickers_list_widget.h @@ -246,6 +246,7 @@ private: void showPreview(); ChannelData *_megagroupSet = nullptr; + uint64 _megagroupSetIdRequested = 0; std::vector _mySets; std::vector _featuredSets; std::vector _searchSets;