Always return tuple by get_albumart_now() (close #89)
This commit is contained in:
parent
ea71d96dd7
commit
5618c9016c
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue