diff options
author | Matthew Wild <mwild1@gmail.com> | 2022-01-10 15:50:55 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2022-01-10 15:50:55 +0000 |
commit | e65e3cad0fe68301e83be7686ed881fd7547061b (patch) | |
tree | 441c0decfd58999666c475ec11a09696da45a127 /plugins | |
parent | 68636e702c30c8fa31cf7ca2242f04788dfb91ef (diff) | |
download | prosody-e65e3cad0fe68301e83be7686ed881fd7547061b.tar.gz prosody-e65e3cad0fe68301e83be7686ed881fd7547061b.zip |
mod_storage_xep0227: Ignore luacheck warning
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_storage_xep0227.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_storage_xep0227.lua b/plugins/mod_storage_xep0227.lua index f9b7fcab..8b4a6a3e 100644 --- a/plugins/mod_storage_xep0227.lua +++ b/plugins/mod_storage_xep0227.lua @@ -20,7 +20,7 @@ local parse_xml_real = require "util.xml".parse; 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); |