Fix rating preservation
This is a bugfix for commit bb5a952e to prevent deletion of database-only ratings.
This commit is contained in:
parent
3afa80bef0
commit
c0e08d42ed
@ -1165,4 +1165,7 @@ void Song::MergeUserSetData(const Song& other) {
|
||||
set_lastplayed(other.lastplayed());
|
||||
set_score(other.score());
|
||||
set_art_manual(other.art_manual());
|
||||
if (rating() == -1.0f) {
|
||||
set_rating(other.rating());
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user