awful.hooks: fix dbus registration
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
a0d36316c4
commit
cec9686335
|
@ -7,7 +7,6 @@
|
||||||
-- Grab environment we need
|
-- Grab environment we need
|
||||||
local pairs = pairs
|
local pairs = pairs
|
||||||
local table = table
|
local table = table
|
||||||
local unpack = unpack
|
|
||||||
local ipairs = ipairs
|
local ipairs = ipairs
|
||||||
local type = type
|
local type = type
|
||||||
local math = math
|
local math = math
|
||||||
|
@ -130,7 +129,7 @@ for name, hook in pairs(capi.hooks) do
|
||||||
_M[name].callbacks = {}
|
_M[name].callbacks = {}
|
||||||
hook(function (msg, ...)
|
hook(function (msg, ...)
|
||||||
if _M[name].callbacks[msg.interface] then
|
if _M[name].callbacks[msg.interface] then
|
||||||
return _M[name].callbacks[msg.interface](msg, unpack(arg))
|
return _M[name].callbacks[msg.interface](msg, ...)
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue