From faff8f44d9996e7b250b4976c5948c91f52cb788 Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Wed, 5 Dec 2018 20:32:37 +0100 Subject: [PATCH] Fixed bug in mail --- awesome-wm-widgets/email-widget/email.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awesome-wm-widgets/email-widget/email.lua b/awesome-wm-widgets/email-widget/email.lua index fc8710c..7f76151 100644 --- a/awesome-wm-widgets/email-widget/email.lua +++ b/awesome-wm-widgets/email-widget/email.lua @@ -65,7 +65,7 @@ function show_emails(timeout) for index, line in pairs(s) do if index > 1 then actions["Check email from account " .. tostring(index - 1)] = function () - awful.spawn.easy_async("firefox " .. s[index - 1]) + awful.spawn.easy_async("firefox " .. s[index - 1], function() end) end end end