diff --git a/bin/miniplayer b/bin/miniplayer index e65f66a..9b59d73 100755 --- a/bin/miniplayer +++ b/bin/miniplayer @@ -638,6 +638,9 @@ class Player: except KeyError: artist = "" + if type(artist) is list: + artist = ", ".join(artist) + try: title = song["title"] except KeyError: diff --git a/setup.cfg b/setup.cfg index 2290671..fbc46cf 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = miniplayer -version = 1.5.1 +version = 1.5.2 description = An mpd client with album art and basic functionality. long_description = file: README.md long_description_content_type = text/markdown