Use format only when available

This commit is contained in:
Jonas Kvinge
2020-10-13 01:38:09 +02:00
parent 9e23e0a623
commit 83f17a37b1
3 changed files with 14 additions and 14 deletions

View File

@@ -803,9 +803,15 @@ void SubsonicRequest::AlbumCoverReceived(QNetworkReply *reply, const QUrl url, c
return;
}
QList<QByteArray> format_list = Utilities::ImageFormatsForMimeType(mimetype.toUtf8());
char *format = nullptr;
if (!format_list.isEmpty()) {
format = format_list.first().data();
}
QImage image;
if (image.loadFromData(data)) {
if (image.save(filename, "JPG")) {
if (image.loadFromData(data, format)) {
if (image.save(filename, format)) {
while (album_covers_requests_sent_.contains(url)) {
Song *song = album_covers_requests_sent_.take(url);
song->set_art_automatic(QUrl::fromLocalFile(filename));