diff --git a/src/covermanager/albumcoverfetchersearch.cpp b/src/covermanager/albumcoverfetchersearch.cpp index 8615c2f3f..36af54090 100644 --- a/src/covermanager/albumcoverfetchersearch.cpp +++ b/src/covermanager/albumcoverfetchersearch.cpp @@ -116,13 +116,13 @@ void AlbumCoverFetcherSearch::ProviderSearchFinished(int id, const QListname(); results_copy[i].score = provider->quality(); - if (results_copy[i].artist == request_.artist) { + if (results_copy[i].artist.toLower() == request_.artist.toLower()) { results_copy[i].score += 0.5; } - if (results_copy[i].album == request_.album) { + if (results_copy[i].album.toLower() == request_.album.toLower()) { results_copy[i].score += 0.5; } - if (results_copy[i].artist != request_.artist && results_copy[i].album != request_.album) { + if (results_copy[i].artist.toLower() != request_.artist.toLower() && results_copy[i].album.toLower() != request_.album.toLower()) { results_copy[i].score -= 1.5; } }