From 19debaa52e97761ea44c207761deaa345aeb8c7d Mon Sep 17 00:00:00 2001 From: Josh Wu Date: Thu, 31 Oct 2024 18:11:40 +0800 Subject: [PATCH] [BAP] Add missing Unspecified context type --- bumble/profiles/bap.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bumble/profiles/bap.py b/bumble/profiles/bap.py index 8a00eafe..1ac814d6 100644 --- a/bumble/profiles/bap.py +++ b/bumble/profiles/bap.py @@ -102,6 +102,7 @@ class ContextType(enum.IntFlag): # fmt: off PROHIBITED = 0x0000 + UNSPECIFIED = 0x0001 CONVERSATIONAL = 0x0002 MEDIA = 0x0004 GAME = 0x0008