From 42a83dbb0cfe4d9e1613a02dbe69eec242ee0aff Mon Sep 17 00:00:00 2001 From: Yunhan Wang Date: Tue, 3 Oct 2017 11:35:07 -0700 Subject: [PATCH] gatt: Fix sending indications with proxy When using AcquireNotify with indication, the proxy needs to be filled in send_notification_to_devices so as to get indication confirmation in applciation. --- src/gatt-database.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gatt-database.c b/src/gatt-database.c index 0c84b2569..47304704a 100644 --- a/src/gatt-database.c +++ b/src/gatt-database.c @@ -1831,7 +1831,7 @@ static bool pipe_io_read(struct io *io, void *user_data) buf, bytes_read, gatt_db_attribute_get_handle(chrc->ccc), chrc->props & BT_GATT_CHRC_PROP_INDICATE, - NULL); + chrc->proxy); return true; } -- 2.47.3