From 956e72135e9ed67a010399761b379c23e81ec3ea Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Thu, 4 May 2017 12:53:32 +0200 Subject: [PATCH] bluetooth: Don't default to native backend The native backend is limited to HSP only which may not work with devices that can only do HFP so if oFono is enabled it shall be used as default. --- src/modules/bluetooth/module-bluez5-discover.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/bluetooth/module-bluez5-discover.c b/src/modules/bluetooth/module-bluez5-discover.c index bc5dbd49e..97ff94357 100644 --- a/src/modules/bluetooth/module-bluez5-discover.c +++ b/src/modules/bluetooth/module-bluez5-discover.c @@ -93,7 +93,7 @@ static pa_hook_result_t device_connection_changed_cb(pa_bluetooth_discovery *y, } #ifdef HAVE_BLUEZ_5_NATIVE_HEADSET -const char *default_headset_backend = "native"; +const char *default_headset_backend = "auto"; #else const char *default_headset_backend = "ofono"; #endif