From c0af8265f0d4416a687d57ab1e7ddbf8fb17a414 Mon Sep 17 00:00:00 2001
From: RemixDev <RemixDev64@gmail.com>
Date: Fri, 19 Aug 2022 17:45:42 +0200
Subject: [PATCH] Fixed filename strings not updating when using
 removeDuplicateArtists

---
 deemix/types/Track.js | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/deemix/types/Track.js b/deemix/types/Track.js
index ce756e8..1cee111 100644
--- a/deemix/types/Track.js
+++ b/deemix/types/Track.js
@@ -297,7 +297,10 @@ class Track {
     this.album.mainArtist.save = (!this.album.mainArtist.isVariousArtists() || settings.albumVariousArtists && this.album.mainArtist.isVariousArtists())
 
     // Check removeDuplicateArtists
-    if (settings.removeDuplicateArtists) this.removeDuplicateArtists()
+    if (settings.removeDuplicateArtists){
+      this.removeDuplicateArtists()
+      this.generateMainFeatStrings()
+    }
 
     // Check if user wants the feat in the title
     if (settings.featuredToTitle == FeaturesOption.REMOVE_TITLE){