mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
migrator/jabberd14: Minor refactoring.
This commit is contained in:
parent
73e55a9af4
commit
a329f8193f
1 changed files with 6 additions and 9 deletions
|
@ -67,15 +67,12 @@ local parse_xml = (function()
|
|||
end)();
|
||||
|
||||
local function load_xml(path)
|
||||
if path then
|
||||
local f, err = io_open(path);
|
||||
if not f then return f, err; end
|
||||
local data = f:read("*a");
|
||||
f:close();
|
||||
if data then
|
||||
return parse_xml(data);
|
||||
end
|
||||
end
|
||||
local f, err = io_open(path);
|
||||
if not f then return f, err; end
|
||||
local data = f:read("*a");
|
||||
f:close();
|
||||
if not data then return; end
|
||||
return parse_xml(data);
|
||||
end
|
||||
|
||||
local function load_spool_file(host, filename, path)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue