From 5618c9016c41e34974521c68e817687078559a2a Mon Sep 17 00:00:00 2001 From: coderkun Date: Sun, 15 Jan 2023 15:18:35 +0100 Subject: [PATCH] Always return tuple by get_albumart_now() (close #89) --- src/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.py b/src/client.py index b2a5d69..3929d26 100644 --- a/src/client.py +++ b/src/client.py @@ -653,7 +653,7 @@ class Client(Base): if album in self._albums: album = self._albums[album] if not album.get_tracks(): - return None + return (album, None) self._logger.debug("get albumart for album \"%s\"", album.get_title()) size = 1 offset = 0