From: Kieran Hogg Date: Fri, 12 Dec 2025 11:50:06 +0000 (+0000) Subject: BBC Sounds: Remove some old NP task cancellation code (#2799) X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=f4843310572d66bef687ca512d8727518e54c11f;p=music-assistant-server.git BBC Sounds: Remove some old NP task cancellation code (#2799) Remove old task cancellation code --- diff --git a/music_assistant/providers/bbc_sounds/__init__.py b/music_assistant/providers/bbc_sounds/__init__.py index a62efebc..1d8e1991 100644 --- a/music_assistant/providers/bbc_sounds/__init__.py +++ b/music_assistant/providers/bbc_sounds/__init__.py @@ -804,6 +804,3 @@ class BBCSoundsProvider(MusicProvider): self.logger.debug(f"Updated play status: {success}") except exceptions.APIResponseError as err: self.logger.error(f"Error updating play status: {err}") - # Cancel now playing task - if FEATURES["now_playing"] and not is_playing and self.current_task: - self.current_task.cancel()