From 60057992ceb0960d8bd6f98271fc558e409fabb1 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Mon, 20 Jan 2025 22:01:40 +0100 Subject: [PATCH] Fix: small typo in dsp config for group child --- music_assistant/helpers/audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/music_assistant/helpers/audio.py b/music_assistant/helpers/audio.py index 305b6881..b923353e 100644 --- a/music_assistant/helpers/audio.py +++ b/music_assistant/helpers/audio.py @@ -966,7 +966,7 @@ def get_player_filter_params( # We can still apply the DSP of that single player. if player.group_childs: child_player = mass.players.get(player.group_childs[0]) - dsp = mass.config.get_player_dsp_config(mass, child_player) + dsp = mass.config.get_player_dsp_config(child_player) else: # This should normally never happen, but if it does, we disable DSP. dsp.enabled = False -- 2.34.1