Fix fallback when no image is available in id3 tag

This commit is contained in:
Bart De Vries 2022-08-09 10:58:16 +02:00
parent 58032dd560
commit 9b97613898
1 changed files with 1 additions and 1 deletions

View File

@ -339,7 +339,7 @@ QString Enclosure::cachedEmbeddedImage() const
if (imageFound) { if (imageFound) {
return cachedpath; return cachedpath;
} else { } else {
return QUrl::fromLocalFile(cachedpath).toString(); return QStringLiteral("");
} }
} }