1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-21 14:16:03 +01:00

Prevent thumbnailing nocover icon for MPRIS (#5886)

This commit is contained in:
droserasprout 2017-10-18 04:53:45 +04:00 committed by John Maguire
parent 08a80a5750
commit 0a59257dc3

View File

@ -61,7 +61,7 @@ void CurrentArtLoader::TempArtLoaded(quint64 id, const QImage& image) {
QString thumbnail_uri;
QImage thumbnail;
if (!image.isNull()) {
if (image != options_.default_output_image_) {
temp_art_.reset(new QTemporaryFile(temp_file_pattern_));
temp_art_->setAutoRemove(true);
temp_art_->open();