Skip to content

Commit

Permalink
Include mix when fetching images
Browse files Browse the repository at this point in the history
  • Loading branch information
tehkillerbee committed Mar 1, 2024
1 parent b7c523e commit 3866b1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mopidy_tidal/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def _get_images(self, uri) -> List[Image]:
def __call__(self, uri: str) -> Tuple[str, List[Image]]:
parts = uri.split(":")
item_type = parts[1]
if item_type not in ["artist", "album", "playlist"]:
if item_type not in ["artist", "album", "playlist", "mix"]:
logger.debug("URI %s type has no image getters", uri)
return uri, []
try:
Expand Down

0 comments on commit 3866b1c

Please sign in to comment.