mirror of
https://github.com/minetest-mods/xban2.git
synced 2024-11-14 12:20:18 +01:00
Fix spurious warnings on database save.
This commit is contained in:
parent
5d91fb66ad
commit
2903f6ae5a
8
init.lua
8
init.lua
|
@ -283,8 +283,12 @@ local function save_db()
|
|||
local f, e = io.open(DB_FILENAME, "wt")
|
||||
db.timestamp = os.time()
|
||||
if f then
|
||||
local ok = f:write(xban.serialize(db))
|
||||
WARNING("Unable to save database: %s", "Write failed")
|
||||
local ok, err = f:write(xban.serialize(db))
|
||||
if not ok then
|
||||
WARNING("Unable to save database: %s", err)
|
||||
end
|
||||
else
|
||||
WARNING("Unable to save database: %s", e)
|
||||
end
|
||||
if f then f:close() end
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue
Block a user