Always return tuple by get_albumart_now() (close #89)

This commit is contained in:
coderkun 2023-01-15 15:18:35 +01:00
parent ea71d96dd7
commit 5618c9016c

View file

@ -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