tools: Fix Invalid return to player message 32/49532/1
authorBharat Panda <bharat.panda@samsung.com>
Wed, 14 Oct 2015 07:08:40 +0000 (12:38 +0530)
committerBharat Panda <bharat.panda@samsung.com>
Wed, 14 Oct 2015 09:14:22 +0000 (14:44 +0530)
Return DBUS_HANDLER_RESULT_HANDLED instead of
DBUS_HANDLER_RESULT_NOT_YET_HANDLED for player message handle.

git repo link:
http://git.kernel.org/cgit/bluetooth/bluez.git/commit/?id=b76028a667b1a9470151d19abf19487311fbe2f7

Change-Id: I1bd4c7cba3c89daa4549ecdf113b75c3ce76f5d6
Signed-off-by: Bharat Panda <bharat.panda@samsung.com>
tools/mpris-proxy.c

index 693055e..bf8148f 100644 (file)
@@ -406,7 +406,7 @@ static DBusHandlerResult player_message(DBusConnection *conn,
 done:
        dbus_message_unref(copy);
 
-       return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
+       return DBUS_HANDLER_RESULT_HANDLED;
 }
 
 static struct player *find_player_by_bus_name(const char *name)