From 9767804146df64fc0ce91896994616ff910fa8ee Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Fri, 14 Jan 2022 17:00:13 +0000 Subject: mod_storage_xep0227: Fix luacheck warnings --- plugins/mod_storage_xep0227.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/mod_storage_xep0227.lua b/plugins/mod_storage_xep0227.lua index 7b039f81..1676341b 100644 --- a/plugins/mod_storage_xep0227.lua +++ b/plugins/mod_storage_xep0227.lua @@ -238,7 +238,7 @@ handlers.roster = { local xml = self:_get_user_xml(user, self.host); local usere = xml and getUserElement(xml); if usere then - local user_jid = jid.join(usere.name, self.host); + local user_jid = jid_join(usere.name, self.host); usere:remove_children("query", "jabber:iq:roster"); usere:maptags(function (tag) if tag.attr.xmlns == "jabber:client" and tag.name == "presence" and tag.attr.type == "subscribe" then @@ -250,7 +250,7 @@ handlers.roster = { local roster = st.stanza("query", {xmlns='jabber:iq:roster'}); usere:add_child(roster); for contact_jid, item in pairs(data) do - contact_jid = jid.bare(jid.prep(contact_jid)); + contact_jid = jid_bare(jid_prep(contact_jid)); if contact_jid ~= false then if contact_jid ~= user_jid then -- Skip self-contacts roster:tag("item", { -- cgit v1.2.3