From f3ed403cee5498ab7dcbb212b2be014b7eaa4962 Mon Sep 17 00:00:00 2001 From: Maxim Raznatovski Date: Wed, 5 Feb 2025 09:49:58 +0100 Subject: [PATCH] fix: remove `is_leader` for better grouping in the Audio Pipeline (#1940) --- music_assistant/helpers/audio.py | 1 - 1 file changed, 1 deletion(-) diff --git a/music_assistant/helpers/audio.py b/music_assistant/helpers/audio.py index babe83ae..06ae3957 100644 --- a/music_assistant/helpers/audio.py +++ b/music_assistant/helpers/audio.py @@ -239,7 +239,6 @@ def get_stream_dsp_details( else: # We only add real players (so skip the PlayerGroups as they only sync containing players) details = get_player_dsp_details(mass, player) - details.is_leader = True dsp[player.player_id] = details if group_preventing_dsp: # The leader is responsible for sending the (combined) audio stream, so get -- 2.34.1