Merge pull request #20 from s-walrus/fix/multiple-artists
Fixed tracks with multiple artists causing crashes and rendering issues
This commit is contained in:
@ -623,6 +623,9 @@ class Player:
|
|||||||
except KeyError:
|
except KeyError:
|
||||||
artist = ""
|
artist = ""
|
||||||
|
|
||||||
|
if type(artist) is list:
|
||||||
|
artist = ", ".join(artist)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
title = song["title"]
|
title = song["title"]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
|
Reference in New Issue
Block a user