fix(bbc_sounds): Fix error when fetching podcast episodes (#2677)
authorKieran Hogg <kieran.hogg@gmail.com>
Wed, 26 Nov 2025 18:25:55 +0000 (18:25 +0000)
committerGitHub <noreply@github.com>
Wed, 26 Nov 2025 18:25:55 +0000 (19:25 +0100)
Remove caching from get_podcast_episodes, fixes #4449

music_assistant/providers/bbc_sounds/__init__.py

index 7969fc2ef10a8fe4cd438cf3dee282228786108a..ce572512316388b8e52a2f2af8c7db57dfad506d 100644 (file)
@@ -724,8 +724,7 @@ class BBCSoundsProvider(MusicProvider):
             return ma_podcast
         raise MusicAssistantError("Incorrect format for podcast")
 
-    @use_cache(expiration=_Constants.SHORT_EXPIRATION)  # type: ignore[arg-type]
-    async def get_podcast_episodes(  # type: ignore[override]
+    async def get_podcast_episodes(
         self,
         prov_podcast_id: str,
     ) -> AsyncGenerator[PodcastEpisode, None]: