fs/alsabar: small fixes

This commit is contained in:
copycat-killer 2017-01-21 01:30:39 +01:00
parent 0b4193199b
commit 444ffd03c1
2 changed files with 3 additions and 2 deletions

View File

@ -19,6 +19,7 @@ local string = { format = string.format,
match = string.match,
rep = string.rep }
local tonumber = tonumber
local type = type
local setmetatable = setmetatable
@ -101,7 +102,7 @@ local function worker(args)
settings()
if callback then callback() end
if type(callback) == "function" then callback() end
end
end)
end

View File

@ -98,7 +98,7 @@ local function worker(args)
widget = fs.widget
settings()
if notify == "on" and fs_now.used >= 99 and not helpers.get_map(partition) then
if notify == "on" and tonumber(fs_now.used) >= 99 and not helpers.get_map(partition) then
naughty.notify({
title = "warning",
text = partition .. " is empty!",