1
0
Fork 0

Fix Exception for f:close() when f==nil

awesome-3.5
Kolan Sh 2014-09-18 10:28:43 +04:00
Ursprung 93cd5bd7c3
Commit b12ec25c8e
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen

2
rc.lua
Datei anzeigen

@ -188,10 +188,10 @@ function mail_count(filename)
if l == nil then
l = "?"
end
f:close()
else
l = "?"
end
f:close()
return l
end
local mail_tmp_path = "/tmp/"..username.."-mail_loop"