diff --git a/Telegram/SourceFiles/history/history_media_types.cpp b/Telegram/SourceFiles/history/history_media_types.cpp index 277e12b5f..3fc14dc3c 100644 --- a/Telegram/SourceFiles/history/history_media_types.cpp +++ b/Telegram/SourceFiles/history/history_media_types.cpp @@ -3472,7 +3472,19 @@ QSize HistoryWebPage::countOptimalSize() { auto lineHeight = unitedLineHeight(); if (!_openl && !_data->url.isEmpty()) { - _openl = std::make_shared(_data->url, true); + const auto previewOfHiddenUrl = [&] { + const auto full = _parent->data()->originalText(); + for (const auto &entity : full.entities) { + if (entity.type() == EntityInTextCustomUrl + && entity.data() == _data->url) { + return true; + } + } + return false; + }(); + _openl = previewOfHiddenUrl + ? std::make_shared(_data->url) + : std::make_shared(_data->url, true); } // init layout