From 728dbbfff0ba9560af0d27e7800eae79bf477286 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 3 Feb 2019 19:41:19 +0530 Subject: [PATCH] ... --- glfw/linux_notify.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glfw/linux_notify.c b/glfw/linux_notify.c index 15b71ddd3..f26d5354a 100644 --- a/glfw/linux_notify.c +++ b/glfw/linux_notify.c @@ -47,7 +47,7 @@ message_handler(DBusConnection *conn, DBusMessage *msg, void *user_data) { if (dbus_message_is_signal(msg, NOTIFICATIONS_IFACE, "ActionInvoked")) { uint32_t notification_id; const char *action; - if (!glfw_dbus_get_args(msg, "Failed to get args from ActionInvoked notification signal", + if (glfw_dbus_get_args(msg, "Failed to get args from ActionInvoked notification signal", DBUS_TYPE_UINT32, ¬ification_id, DBUS_TYPE_STRING, &action, DBUS_TYPE_INVALID)) { if (activated_handler) { activated_handler(notification_id, action);