From ae9d40c06a7dbb12b605fca0ab347f3ca7595bad Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 6 Apr 2020 17:24:08 -0700 Subject: [PATCH] client: Make advertise instances default to discoverable The more common case is that advertisements are discoverable not the other way around. Signed-off-by: Anuj Jain Signed-off-by: Ayush Garg --- client/advertising.c | 1 + 1 file changed, 1 insertion(+) diff --git a/client/advertising.c b/client/advertising.c index 926afd7..87ce048 100644 --- a/client/advertising.c +++ b/client/advertising.c @@ -79,6 +79,7 @@ static struct ad { bool appearance; } ad = { .local_appearance = UINT16_MAX, + .discoverable = true, }; static void ad_release(DBusConnection *conn) -- 2.7.4