This commit is contained in:
Novatux 2014-07-12 10:51:09 +02:00
parent eec456be63
commit 24a631ee2a
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ local function read_file(filename)
local t = f:read("*all")
f:close()
if t=="" or t==nil then return {} end
return core.deserialize(t)
return core.deserialize(t) or {}
end
local function write_file(filename, table)