mirror of
https://gitlab.com/RemixDev/deemix-js.git
synced 2025-01-29 17:18:27 +00:00
Fixed filename strings not updating when using removeDuplicateArtists
This commit is contained in:
parent
fbff24eb19
commit
c0af8265f0
|
@ -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){
|
||||
|
|
Loading…
Reference in a new issue