mod_storage_xep0227: Ignore luacheck warning

This commit is contained in:
Matthew Wild 2022-01-10 15:50:55 +00:00
parent 68636e702c
commit e65e3cad0f

View file

@ -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);