mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_storage_xep0227: Return error from io.open if unable to open file for writing
This commit is contained in:
parent
d5624ca8e0
commit
33c20a1220
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue