MUC: Fix error origin JID in wrong argument position

Mistake introduced in cbe524ed1a6a.  Removing because this is a query to
the bare JID where the error origin matches the resulting stanza 'from'.
This commit is contained in:
Kim Alvefur 2021-12-08 21:06:16 +01:00
parent d621e0626c
commit 1c0c380203

View file

@ -121,7 +121,7 @@ local function handle_register_iq(room, origin, stanza)
local user_jid = jid_bare(stanza.attr.from)
local affiliation = room:get_affiliation(user_jid);
if affiliation == "outcast" then
origin.send(st.error_reply(stanza, "auth", "forbidden", room.jid));
origin.send(st.error_reply(stanza, "auth", "forbidden"));
return true;
elseif not (affiliation or allow_unaffiliated) then
origin.send(st.error_reply(stanza, "auth", "registration-required"));