This commit is contained in:
Adrian Garcia 2024-03-15 06:07:45 +01:00 committed by GitHub
commit 744e2a491b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -1138,13 +1138,13 @@ uint qHash(const Song& song) {
}
bool Song::IsSimilar(const Song& other) const {
return title().compare(other.title(), Qt::CaseInsensitive) == 0 &&
return basefilename().compare(other.basefilename(), Qt::CaseInsensitive) == 0 &&
artist().compare(other.artist(), Qt::CaseInsensitive) == 0;
}
uint HashSimilar(const Song& song) {
// Should compare the same fields as function IsSimilar
return qHash(song.title().toLower()) ^ qHash(song.artist().toLower());
return qHash(song.basefilename().toLower()) ^ qHash(song.artist().toLower());
}
bool Song::IsOnSameAlbum(const Song& other) const {