aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2022-01-10 15:50:55 +0000
committerMatthew Wild <mwild1@gmail.com>2022-01-10 15:50:55 +0000
commite65e3cad0fe68301e83be7686ed881fd7547061b (patch)
tree441c0decfd58999666c475ec11a09696da45a127 /plugins
parent68636e702c30c8fa31cf7ca2242f04788dfb91ef (diff)
downloadprosody-e65e3cad0fe68301e83be7686ed881fd7547061b.tar.gz
prosody-e65e3cad0fe68301e83be7686ed881fd7547061b.zip
mod_storage_xep0227: Ignore luacheck warning
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_storage_xep0227.lua2
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);