Software /
code /
prosody
Changeset
12175:39921b979edb
mod_storage_xep0227: Ignore luacheck warning
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Mon, 10 Jan 2022 15:50:55 +0000 |
parents | 12174:a38b7cb5fd6a |
children | 12176:e7639625a848 |
files | plugins/mod_storage_xep0227.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_storage_xep0227.lua Mon Jan 10 15:48:45 2022 +0000 +++ b/plugins/mod_storage_xep0227.lua Mon Jan 10 15:50:55 2022 +0000 @@ -20,7 +20,7 @@ local lfs = require "lfs"; -local function default_get_user_xml(self, user, host) +local function default_get_user_xml(self, user, host) --luacheck: ignore 212/self local jid = user.."@"..host; local path = paths.join(prosody.paths.data, jid..".xml"); local f, err = io_open(path);