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:
|
||||
artist = ""
|
||||
|
||||
if type(artist) is list:
|
||||
artist = ", ".join(artist)
|
||||
|
||||
try:
|
||||
title = song["title"]
|
||||
except KeyError:
|
||||
|
Reference in New Issue
Block a user