From 9af1ed9a0f6c73d2dee41513911a4243c2d5f572 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Sat, 16 Mar 2019 18:54:11 -0500 Subject: [PATCH] dbus.lua: don't include types, it's magical enough to not need them (and so we were including "s" capabilities) --- lib/naughty/dbus.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/naughty/dbus.lua b/lib/naughty/dbus.lua index e1088ac5..d4fc2ac7 100644 --- a/lib/naughty/dbus.lua +++ b/lib/naughty/dbus.lua @@ -244,7 +244,7 @@ local function protected_method_call(_, sender, object_path, interface, method, -- We actually do display the body of the message, we support , -- and in the body and we handle static (non-animated) icons. invocation:return_value(GLib.Variant("(as)", { - { "s", "body", "s", "body-markup", "s", "icon-static", "s", "actions" } + { "body", "body-markup", "icon-static", "actions" } })) end end