From 07cc05f62e6381cfff535c1468272803fb65a308 Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 7 Feb 2020 13:34:24 +0400 Subject: [PATCH] Fix loading thumbnails in videos in albums. Once more fixes #6332. --- Telegram/SourceFiles/history/view/media/history_view_gif.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Telegram/SourceFiles/history/view/media/history_view_gif.cpp b/Telegram/SourceFiles/history/view/media/history_view_gif.cpp index 5dc6ba35c..3b584aba2 100644 --- a/Telegram/SourceFiles/history/view/media/history_view_gif.cpp +++ b/Telegram/SourceFiles/history/view/media/history_view_gif.cpp @@ -1120,6 +1120,9 @@ void Gif::validateGroupedCache( && thumb->height() < kUseNonBlurredThreshold)); if (good && !useGood) { good->load({}); + if (!useThumb) { + _data->loadThumbnail(_realParent->fullId()); + } } const auto loadLevel = useGood ? 3 : useThumb ? 2 : image ? 1 : 0;