mod_storage_xep0227: Ignore luacheck warning
authorMatthew Wild <mwild1@gmail.com>
Mon, 10 Jan 2022 15:50:55 +0000
changeset 12179 39921b979edb
parent 12178 a38b7cb5fd6a
child 12180 e7639625a848
mod_storage_xep0227: Ignore luacheck warning
plugins/mod_storage_xep0227.lua
--- 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);