mod_storage_xep0227: Return error from io.open if unable to open file for writing

This commit is contained in:
Kim Alvefur 2015-05-15 15:25:59 +02:00
parent d5624ca8e0
commit 33c20a1220

View file

@ -23,8 +23,8 @@ end
local function setXml(user, host, xml)
local jid = user.."@"..host;
local path = paths.join(prosody.paths.data, jid..".xml");
local f = io_open(path, "w");
if not f then return; end
local f, err = io_open(path, "w");
if not f then return f, err; end
if xml then
local s = tostring(xml);
f:write(s);