From fb0ceb110ec77f79e1434429ce71ff069b4699d5 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 28 Jan 2020 16:46:55 +0300 Subject: [PATCH] Fix assertion violation in non-history song player. --- Telegram/SourceFiles/media/player/media_player_panel.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/media/player/media_player_panel.cpp b/Telegram/SourceFiles/media/player/media_player_panel.cpp index 5eb81aa4c..6eb44bf44 100644 --- a/Telegram/SourceFiles/media/player/media_player_panel.cpp +++ b/Telegram/SourceFiles/media/player/media_player_panel.cpp @@ -234,7 +234,9 @@ void Panel::refreshList() { : nullptr; const auto media = item ? item->media() : nullptr; const auto document = media ? media->document() : nullptr; - if (!document || !document->isSharedMediaMusic()) { + if (!document + || !document->isSharedMediaMusic() + || !IsServerMsgId(item->id)) { return nullptr; } const auto result = item->history()->peer;