projects
/
music-assistant-server.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2cb5b3a
)
fix(bbc_sounds): Fix error when fetching podcast episodes (#2677)
author
Kieran Hogg
<kieran.hogg@gmail.com>
Wed, 26 Nov 2025 18:25:55 +0000
(18:25 +0000)
committer
GitHub
<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
patch
|
blob
|
history
diff --git
a/music_assistant/providers/bbc_sounds/__init__.py
b/music_assistant/providers/bbc_sounds/__init__.py
index 7969fc2ef10a8fe4cd438cf3dee282228786108a..ce572512316388b8e52a2f2af8c7db57dfad506d 100644
(file)
--- a/
music_assistant/providers/bbc_sounds/__init__.py
+++ b/
music_assistant/providers/bbc_sounds/__init__.py
@@
-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]: