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:
Erica
2022-03-28 19:20:28 +00:00
committed by GitHub

View File

@ -623,6 +623,9 @@ class Player:
except KeyError:
artist = ""
if type(artist) is list:
artist = ", ".join(artist)
try:
title = song["title"]
except KeyError: