From f66e62f3747a983050e061e7b9c2153ab8d407f6 Mon Sep 17 00:00:00 2001 From: Wojciech Kozlowski Date: Thu, 2 Jan 2025 15:43:14 +0100 Subject: [PATCH] Remove some whitespace --- src/core/collection/artist.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/collection/artist.rs b/src/core/collection/artist.rs index 40b395c..8851470 100644 --- a/src/core/collection/artist.rs +++ b/src/core/collection/artist.rs @@ -123,7 +123,6 @@ impl Merge for Artist { 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); - self.albums.sort_unstable(); } }