mirror of
https://github.com/strawberrymusicplayer/strawberry
synced 2025-02-08 07:48:48 +01:00
Fix stupid bug
This commit is contained in:
parent
2e6a29eacc
commit
0ddff2b087
@ -656,7 +656,7 @@ void QobuzRequest::AlbumsReceived(QNetworkReply *reply, const QString &artist_id
|
|||||||
}
|
}
|
||||||
|
|
||||||
QString artist = obj_artist["name"].toString();
|
QString artist = obj_artist["name"].toString();
|
||||||
if (artist_id_requested != 0 && artist_id != artist_id_requested) {
|
if (!artist_id_requested.isEmpty() && artist_id != artist_id_requested) {
|
||||||
qLog(Debug) << "Skipping artist" << "artist" << artist << artist_id << "does not match album artist" << album_artist_id << album_artist;
|
qLog(Debug) << "Skipping artist" << "artist" << artist << artist_id << "does not match album artist" << album_artist_id << album_artist;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user