Change allow album cover search check

This commit is contained in:
Jonas Kvinge 2020-08-07 00:28:46 +02:00
parent 19f69e9e6c
commit 4f6e06131c
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ void AlbumCoverFetcherSearch::Start(CoverProviders *cover_providers) {
}
// If artist and album is missing, check if we can still use this provider by searching using title.
if (!provider->allow_missing_album() && request_.artist.isEmpty() && request_.album.isEmpty()) {
if (!provider->allow_missing_album() && request_.album.isEmpty() && !request_.title.isEmpty()) {
continue;
}