Fix rating preservation

This is a bugfix for commit bb5a952e to prevent deletion of database-only ratings.
This commit is contained in:
Marko Hauptvogel 2016-04-17 19:23:36 -07:00 committed by Arnaud Bienner
parent 3afa80bef0
commit c0e08d42ed

View File

@ -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());
}
}