From 1d8d2b6251ad69497be8157cd6f101c4dd98e7a2 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 10 Sep 2019 11:00:48 +0300 Subject: [PATCH] Fix theme link preview title. --- .../SourceFiles/history/view/media/history_view_web_page.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/history/view/media/history_view_web_page.cpp b/Telegram/SourceFiles/history/view/media/history_view_web_page.cpp index adb6d7ab2..2ac889f87 100644 --- a/Telegram/SourceFiles/history/view/media/history_view_web_page.cpp +++ b/Telegram/SourceFiles/history/view/media/history_view_web_page.cpp @@ -781,7 +781,7 @@ int WebPage::bottomInfoPadding() const { QString WebPage::displayedSiteName() const { return (_data->document && _data->document->isWallPaper()) ? tr::lng_media_chat_background(tr::now) - : (_data->document && _data->document->isWallPaper()) + : (_data->document && _data->document->isTheme()) ? tr::lng_media_color_theme(tr::now) : _data->siteName; }