mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
d621e0626c
commit
1c0c380203
1 changed files with 1 additions and 1 deletions
|
@ -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"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue