1
0
mirror of https://github.com/strawberrymusicplayer/strawberry synced 2025-02-06 12:25:10 +01:00

CollectionModel: Fix updating song when disc is changed

This commit is contained in:
Jonas Kvinge 2024-10-04 16:56:59 +02:00
parent c47ec3e70a
commit 525ebbb9b7

View File

@ -1211,6 +1211,7 @@ bool CollectionModel::IsSongTitleDataChanged(const Song &song1, const Song &song
return song1.url() != song2.url() ||
song1.track() != song2.track() ||
song1.disc() != song2.disc() ||
song1.title() != song2.title() ||
song1.compilation() != song2.compilation() ||
(song1.compilation() && song1.artist() != song2.artist());