From 91cb1b1df336ac4ce2231cb0c1a9621c11d4912c Mon Sep 17 00:00:00 2001 From: Josh Wu Date: Thu, 5 Feb 2026 15:25:17 +0800 Subject: [PATCH] AVRCP: Add available player changed event --- bumble/avrcp.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bumble/avrcp.py b/bumble/avrcp.py index 2f51ee49..5be58792 100644 --- a/bumble/avrcp.py +++ b/bumble/avrcp.py @@ -2798,6 +2798,8 @@ class Protocol(utils.EventEmitter): for attribute, value in settings.items() ] ) + case EventId.AVAILABLE_PLAYERS_CHANGED: + event = AvailablePlayersChangedEvent() case _: logger.warning( "Event supported but not handled %s", command.event_id