# HG changeset patch # User Matthew Wild # Date 1642429107 0 # Node ID c5788969b8124a333d799b950c9f4d685eac272d # Parent 9965d7d126c7f441c867600a62d866e0aeccd5dc mod_storage_xep0227: Fix luacheck warning diff -r 9965d7d126c7 -r c5788969b812 plugins/mod_storage_xep0227.lua --- a/plugins/mod_storage_xep0227.lua Mon Jan 17 14:12:45 2022 +0000 +++ b/plugins/mod_storage_xep0227.lua Mon Jan 17 14:18:27 2022 +0000 @@ -34,7 +34,7 @@ f:close(); return parse_xml_real(s); end -local function default_set_user_xml(self, user, host, xml) +local function default_set_user_xml(self, user, host, xml) --luacheck: ignore 212/self local jid = jid_join(user, host); local path = paths.join(prosody.paths.data, jid..".xml"); local f, err = io_open(path, "w");