From ef14e6eaa7e698d0f62feed3eecd0cae74484d7b Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Tue, 7 Jun 2022 15:24:31 -0700 Subject: [PATCH] monitor/att: Fix decoding for notifications --- monitor/att.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/att.c b/monitor/att.c index 00db8ddaa..de70a9dc4 100644 --- a/monitor/att.c +++ b/monitor/att.c @@ -1547,7 +1547,7 @@ static void print_notify(const struct l2cap_frame *frame, uint16_t handle, return; } - attr = get_attribute(frame, handle, false); + attr = get_attribute(frame, handle, true); if (!attr) return; -- 2.47.3