mirror of
https://gitlab.com/RemixDev/deemix-js.git
synced 2025-02-17 19:00:07 +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())
|
this.album.mainArtist.save = (!this.album.mainArtist.isVariousArtists() || settings.albumVariousArtists && this.album.mainArtist.isVariousArtists())
|
||||||
|
|
||||||
// Check removeDuplicateArtists
|
// Check removeDuplicateArtists
|
||||||
if (settings.removeDuplicateArtists) this.removeDuplicateArtists()
|
if (settings.removeDuplicateArtists){
|
||||||
|
this.removeDuplicateArtists()
|
||||||
|
this.generateMainFeatStrings()
|
||||||
|
}
|
||||||
|
|
||||||
// Check if user wants the feat in the title
|
// Check if user wants the feat in the title
|
||||||
if (settings.featuredToTitle == FeaturesOption.REMOVE_TITLE){
|
if (settings.featuredToTitle == FeaturesOption.REMOVE_TITLE){
|
||||||
|
|
Loading…
Reference in a new issue