From 5e1794a15b8185b06f6a5f72a7a128690ec6c247 Mon Sep 17 00:00:00 2001 From: Josh Wu Date: Tue, 28 Oct 2025 00:05:18 +0800 Subject: [PATCH] AVRCP: Reply ACCEPTED on set absolute volume --- bumble/avrcp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumble/avrcp.py b/bumble/avrcp.py index 784a295..71b24f8 100644 --- a/bumble/avrcp.py +++ b/bumble/avrcp.py @@ -2391,7 +2391,7 @@ class Protocol(utils.EventEmitter): effective_volume = await self.delegate.get_absolute_volume() self.send_avrcp_response( transaction_label, - avc.ResponseFrame.ResponseCode.IMPLEMENTED_OR_STABLE, + avc.ResponseFrame.ResponseCode.ACCEPTED, SetAbsoluteVolumeResponse(effective_volume), )