From 3ec2f588269bf5224d12f22fb9b0bd2c64d7db7d Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Mon, 3 Jul 2017 17:32:13 +0200 Subject: Backed out changeset a6574fdf8734, violates XEP-0045 --- plugins/muc/muc.lib.lua | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index a20f3b26..8592e225 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -349,11 +349,8 @@ function room_mt:handle_kickable(origin, stanza) -- luacheck: ignore 212 occupant:set_session(real_jid, st.presence({type="unavailable"}) :tag('status'):text(error_message)); self:save_occupant(occupant); - local x = { - base = st.stanza("x", {xmlns = "http://jabber.org/protocol/muc#user";}); - self = st.stanza("x", {xmlns = "http://jabber.org/protocol/muc#user";}) - :tag("status", {code = "307"}); - }; + local x = st.stanza("x", {xmlns = "http://jabber.org/protocol/muc#user";}) + :tag("status", {code = "307"}) self:publicise_occupant_status(occupant, x); if occupant.jid == real_jid then -- Was last session module:fire_event("muc-occupant-left", {room = self; nick = occupant.nick; occupant = occupant;}); @@ -1301,11 +1298,7 @@ function room_mt:set_role(actor, occupant_jid, role, reason) local x = st.stanza("x", {xmlns = "http://jabber.org/protocol/muc#user"}); if not role then - x = { - base = x; - self = st.stanza("x", {xmlns = "http://jabber.org/protocol/muc#user"}) - :tag("status", {code = "307"}):up(); - }; + x:tag("status", {code = "307"}):up(); end occupant.role = role; self:save_occupant(occupant); -- cgit v1.2.3