Fixed filename strings not updating when using removeDuplicateArtists

This commit is contained in:
RemixDev 2022-08-19 17:45:42 +02:00
parent fbff24eb19
commit c0af8265f0
No known key found for this signature in database
GPG key ID: B33962B465BDB51C

View file

@ -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){