Fix crash in downloads bar.

This commit is contained in:
John Preston 2022-03-09 08:53:15 +04:00
parent 6e00b4636b
commit f1064e2d2f
1 changed files with 3 additions and 1 deletions

View File

@ -927,7 +927,9 @@ rpl::producer<Ui::DownloadBarContent> MakeDownloadBarContent() {
state->media = thumbnailed
? thumbnailed->createMediaView()
: nullptr;
state->media->thumbnailWanted(single->item->fullId());
if (const auto raw = state->media.get()) {
raw->thumbnailWanted(single->item->fullId());
}
state->thumbnail = QImage();
resolveThumbnail();
}