From 1f2f3fd126df817d448da9947b4d705f00abb0a4 Mon Sep 17 00:00:00 2001 From: Milanka Ringwald Date: Mon, 28 Oct 2024 10:29:13 +0100 Subject: [PATCH] avrcp_target: add AVRCP_OPERATION_ID_VENDOR_UNIQUE to the set of valid AVRCP ops --- src/classic/avrcp_target.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/classic/avrcp_target.c b/src/classic/avrcp_target.c index f47645dff..f05a9a220 100644 --- a/src/classic/avrcp_target.c +++ b/src/classic/avrcp_target.c @@ -920,7 +920,7 @@ static bool avcrp_operation_id_is_valid(avrcp_operation_id_t operation_id){ if (operation_id < AVRCP_OPERATION_ID_F1) return false; if (operation_id < AVRCP_OPERATION_ID_RESERVED_6) return true; - + if (operation_id < AVRCP_OPERATION_ID_RESERVED_7) return true; return false; }