mirror of
https://gitlab.com/RemixDev/deemix-js.git
synced 2024-12-28 18:36:26 +00:00
Fixed artist casing option not working
This commit is contained in:
parent
d3b7c2c5cd
commit
82ea858128
|
@ -340,7 +340,8 @@ class Track {
|
|||
// Change title and artist casing if needed
|
||||
if (settings.titleCasing != "nothing"){
|
||||
this.title = changeCase(this.title, settings.titleCasing)
|
||||
} else if (settings.artistCasing != "nothing"){
|
||||
}
|
||||
if (settings.artistCasing != "nothing"){
|
||||
this.mainArtist.name = changeCase(this.mainArtist.name, settings.artistCasing)
|
||||
this.artists.forEach((artist, i) => {
|
||||
this.artists[i] = changeCase(artist, settings.artistCasing)
|
||||
|
|
Loading…
Reference in a new issue