simplify and make os.time() default
This commit is contained in:
tenplus1 2016-05-21 13:46:44 +01:00
parent f783039892
commit 93b5c7300b
1 changed files with 2 additions and 5 deletions

View File

@ -82,11 +82,8 @@ function ipnames.save_data()
ipnames.changes = false
local file = io.open(ipnames.file, "w")
for k, v in pairs(ipnames.data) do
if v[2] and v[2] > 0 then
file:write(k.."|"..v[1].."|"..v[2].."\n")
else
file:write(k.."|"..v[1].."\n")
end
v[2] = v[2] or os.time()
file:write(k.."|"..v[1].."|"..v[2].."\n")
end
io.close(file)
end