>From 55eb706b698c3b0c59559eff342d6ee59ec9e3f3 Mon Sep 17 00:00:00 2001 From: Arvydas Sidorenko <[email protected]> Date: Sun, 17 Jun 2012 15:11:01 +0200 Subject: [PATCH] Calling naughty.notify without specifing module
Lua 5.2 port bug, which shows up on notify-send Signed-off-by: Arvydas Sidorenko <[email protected]> --- lib/naughty.lua.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/naughty.lua.in b/lib/naughty.lua.in index dbecde9..b089cff 100644 --- a/lib/naughty.lua.in +++ b/lib/naughty.lua.in @@ -561,7 +561,7 @@ if capi.dbus then if expire and expire > -1 then args.timeout = expire / 1000 end - local id = notify(args).id + local id = naughty.notify(args).id return "u", id end return "u", "0" -- 1.7.8.6 -- To unsubscribe, send mail to [email protected].
