Avoid "QFSFileEngine::open: No file name specified" messages if we know

that the filename is empty
This commit is contained in:
Chocobozzz 2015-04-17 10:38:38 +02:00
parent 7bfe32c7df
commit 0938e81711

View File

@ -196,6 +196,9 @@ AlbumCoverLoader::TryLoadResult AlbumCoverLoader::TryLoadImage(
QMetaObject::invokeMethod(spotify, "LoadImage", Qt::QueuedConnection,
Q_ARG(QString, id));
return TryLoadResult(true, false, QImage());
} else if (filename.isEmpty()) {
// Avoid "QFSFileEngine::open: No file name specified" messages if we know that the filename is empty
return TryLoadResult(false, false, task.options.default_output_image_);
}
QImage image(filename);