From b66a613820d24319e0f9703c9be0fd2054c56812 Mon Sep 17 00:00:00 2001 From: OzGav Date: Mon, 12 Jan 2026 22:13:22 +1000 Subject: [PATCH] Fix Pandora only showing five stations (#2956) --- music_assistant/providers/pandora/provider.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/music_assistant/providers/pandora/provider.py b/music_assistant/providers/pandora/provider.py index 9da33e0f..4441ccf6 100644 --- a/music_assistant/providers/pandora/provider.py +++ b/music_assistant/providers/pandora/provider.py @@ -195,12 +195,16 @@ class PandoraProvider(MusicProvider): async def get_library_radios(self) -> AsyncGenerator[Radio, None]: """Retrieve library/subscribed radio stations from the provider.""" - self.logger.debug("Fetching Pandora stations") - - response = await self._api_request("POST", STATIONS_ENDPOINT, data={}) + response = await self._api_request( + "POST", + STATIONS_ENDPOINT, + data={ + "pageSize": 250, + }, + ) stations = response.get("stations", []) - self.logger.debug("Found %d Pandora stations", len(stations)) + self.logger.debug("Retrieved %d stations from Pandora", len(stations)) for station in stations: station_image = None -- 2.34.1