Add a library identifier to disambiguate clashes in the library #238

Merged
wojtek merged 16 commits from 231---differentiate-release-groups-with-same-title-but-different-type-clash into main 2025-01-02 15:50:55 +01:00
Showing only changes of commit f66e62f374 - Show all commits

View File

@ -123,7 +123,6 @@ impl Merge for Artist {
let other_without_id = Artist::merge_albums_by_lib_id(&mut self.albums, other.albums); let other_without_id = Artist::merge_albums_by_lib_id(&mut self.albums, other.albums);
Artist::merge_albums_by_title(&mut self.albums, other_without_id); Artist::merge_albums_by_title(&mut self.albums, other_without_id);
self.albums.sort_unstable(); self.albums.sort_unstable();
} }
} }