From 397cbeb864fd44ed26d052902d850f4aa5c9a8fc 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. --- client/advertising.c | 1 + 1 file changed, 1 insertion(+) diff --git a/client/advertising.c b/client/advertising.c index afc8754df..94eb616b2 100644 --- a/client/advertising.c +++ b/client/advertising.c @@ -80,6 +80,7 @@ static struct ad { bool appearance; } ad = { .local_appearance = UINT16_MAX, + .discoverable = true, }; static void ad_release(DBusConnection *conn) -- 2.47.3