Software /
code /
prosody
Changeset
6699:ccdd0b615106
mod_storage_xep0227: Open file for writing even if removing so os.remove has a file to delete
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 15 May 2015 15:25:37 +0200 |
parents | 6698:95a8aeca1fc9 |
children | 6700:0103dc8fa179 |
files | plugins/mod_storage_xep0227.lua |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_storage_xep0227.lua Fri May 15 15:17:27 2015 +0200 +++ b/plugins/mod_storage_xep0227.lua Fri May 15 15:25:37 2015 +0200 @@ -23,14 +23,15 @@ 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 if xml then - local f = io_open(path, "w"); - if not f then return; end local s = tostring(xml); f:write(s); f:close(); return true; else + f:close(); return os_remove(path); end end