Use format only when available
This commit is contained in:
parent
9e23e0a623
commit
83f17a37b1
|
@ -1249,12 +1249,9 @@ void QobuzRequest::AlbumCoverReceived(QNetworkReply *reply, const QUrl &cover_ur
|
|||
}
|
||||
|
||||
QList<QByteArray> format_list = Utilities::ImageFormatsForMimeType(mimetype.toUtf8());
|
||||
QByteArray format;
|
||||
if (format_list.isEmpty()) {
|
||||
format = "JPG";
|
||||
}
|
||||
else {
|
||||
format = format_list.first();
|
||||
char *format = nullptr;
|
||||
if (!format_list.isEmpty()) {
|
||||
format = format_list.first().data();
|
||||
}
|
||||
|
||||
QImage image;
|
||||
|
|
|
@ -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));
|
||||
|
|
|
@ -1186,12 +1186,9 @@ void TidalRequest::AlbumCoverReceived(QNetworkReply *reply, const QString &album
|
|||
}
|
||||
|
||||
QList<QByteArray> format_list = Utilities::ImageFormatsForMimeType(mimetype.toUtf8());
|
||||
QByteArray format;
|
||||
if (format_list.isEmpty()) {
|
||||
format = "JPG";
|
||||
}
|
||||
else {
|
||||
format = format_list.first();
|
||||
char *format = nullptr;
|
||||
if (!format_list.isEmpty()) {
|
||||
format = format_list.first().data();
|
||||
}
|
||||
|
||||
QImage image;
|
||||
|
|
Loading…
Reference in New Issue