Fix: Check for `PlayerType.GROUP` in `is_grouping_preventing_dsp`
ContentType,
MediaType,
PlayerFeature,
+ PlayerType,
StreamType,
VolumeNormalizationMode,
)
# PlayerGroups have no leader, so having a child count of 1 means
# the group actually contains only a single player.
is_multiple_devices = child_count > 1
+ elif player.type == PlayerType.GROUP:
+ # This is an group player external to Music Assistant.
+ is_multiple_devices = True
else:
is_multiple_devices = child_count > 0
return is_multiple_devices and not multi_device_dsp_supported