From 388551bd9b2e02e54983a438891707719263821b Mon Sep 17 00:00:00 2001 From: tjiho Date: Sun, 27 Oct 2024 14:47:19 +0100 Subject: [PATCH] Increase size when listing albums by genre --- mopidy_subidy/subsonic_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy_subidy/subsonic_api.py b/mopidy_subidy/subsonic_api.py index fea7206..e93498b 100644 --- a/mopidy_subidy/subsonic_api.py +++ b/mopidy_subidy/subsonic_api.py @@ -453,7 +453,7 @@ class SubsonicApi: def get_raw_albums_by_genre(self, genre): try: response = self.connection.getAlbumList2( - ltype='byGenre', genre=genre + ltype='byGenre', size=MAX_LIST_RESULTS, genre=genre, ) except Exception: logger.warning(