Increase size when listing albums by genre

This commit is contained in:
tjiho 2024-10-27 14:47:19 +01:00
parent 3c38ed32f4
commit 388551bd9b

View file

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