diff options
Diffstat (limited to 'binding/bluetooth-util.c')
-rw-r--r-- | binding/bluetooth-util.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/binding/bluetooth-util.c b/binding/bluetooth-util.c index 3e0303f..f57b43e 100644 --- a/binding/bluetooth-util.c +++ b/binding/bluetooth-util.c @@ -1038,13 +1038,10 @@ void json_process_path(json_object *jresp, const char *path) { } gchar *return_bluez_path(afb_req_t request) { - const char *adapter, *device; + const char *adapter = afb_req_value(request, "adapter"); + const char *device; - adapter = afb_req_value(request, "adapter"); - if (!adapter) { - afb_req_fail(request, "failed", "No adapter parameter"); - return NULL; - } + adapter = adapter ? adapter : BLUEZ_DEFAULT_ADAPTER; device = afb_req_value(request, "device"); if (!device) { |