From b74ce3f65f2251093b769872af93576663fe06e5 Mon Sep 17 00:00:00 2001 From: Nikolai Puch <82290209+Dowafu@users.noreply.github.com> Date: Mon, 7 Sep 2026 18:43:59 +0200 Subject: [PATCH] fix: Change roam indicator from CALL to ROAM --- bumble/hfp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumble/hfp.py b/bumble/hfp.py index df6cc3b40..2897eb4ab 100644 --- a/bumble/hfp.py +++ b/bumble/hfp.py @@ -602,7 +602,7 @@ def signal(cls: type[Self]) -> Self: def roam(cls: type[Self]) -> Self: """Default roam indicator state.""" return cls( - indicator=AgIndicator.CALL, supported_values={0, 1}, current_status=0 + indicator=AgIndicator.ROAM, supported_values={0, 1}, current_status=0 ) @classmethod