Merge branch 'main' into dev

This commit is contained in:
Erica
2022-03-29 00:29:51 +00:00
2 changed files with 4 additions and 1 deletions

View File

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