aboutsummaryrefslogtreecommitdiffstats
path: root/binding/bluetooth-api.c
diff options
context:
space:
mode:
Diffstat (limited to 'binding/bluetooth-api.c')
-rw-r--r--binding/bluetooth-api.c19
1 files changed, 5 insertions, 14 deletions
diff --git a/binding/bluetooth-api.c b/binding/bluetooth-api.c
index e9c339f..58c326c 100644
--- a/binding/bluetooth-api.c
+++ b/binding/bluetooth-api.c
@@ -599,14 +599,9 @@ static void bluetooth_state(afb_req_t request)
struct bluetooth_state *ns = bluetooth_get_userdata(request);
GError *error = NULL;
json_object *jresp;
- const char *adapter;
+ const char *adapter = afb_req_value(request, "adapter");
- adapter = afb_req_value(request, "adapter");
- if (!adapter) {
- afb_req_fail(request, "failed", "No adapter give to return state");
- return;
- }
- adapter = BLUEZ_ROOT_PATH(adapter);
+ adapter = BLUEZ_ROOT_PATH(adapter ? adapter : BLUEZ_DEFAULT_ADAPTER);
jresp = adapter_properties(ns, &error, adapter);
if (!jresp) {
@@ -622,14 +617,10 @@ static void bluetooth_adapter(afb_req_t request)
{
struct bluetooth_state *ns = bluetooth_get_userdata(request);
GError *error = NULL;
- const char *adapter, *scan, *discoverable, *powered;
+ const char *adapter = afb_req_value(request, "adapter");
+ const char *scan, *discoverable, *powered;
- adapter = afb_req_value(request, "adapter");
- if (!adapter) {
- afb_req_fail(request, "failed", "No adapter given to configure");
- return;
- }
- adapter = BLUEZ_ROOT_PATH(adapter);
+ adapter = BLUEZ_ROOT_PATH(adapter ? adapter : BLUEZ_DEFAULT_ADAPTER);
scan = afb_req_value(request, "discovery");
if (scan) {