diff options
author | Kim Alvefur <zash@zash.se> | 2021-12-08 21:55:25 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-12-08 21:55:25 +0100 |
commit | 449311b2d112182be22ab9bef06ae00d200726e9 (patch) | |
tree | 5ae1529d0dac1108851bb6063b6fd8622c7ea324 /plugins/muc/members_only.lib.lua | |
parent | 1c0c380203e22f9fba14186380e187b956722220 (diff) | |
download | prosody-449311b2d112182be22ab9bef06ae00d200726e9.tar.gz prosody-449311b2d112182be22ab9bef06ae00d200726e9.zip |
MUC: Remove <{muc}x> tags in some errors
Including the payload of the stanza that caused the error is optional
and we're generally not doing it anywhere else.
Diffstat (limited to 'plugins/muc/members_only.lib.lua')
-rw-r--r-- | plugins/muc/members_only.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/members_only.lib.lua b/plugins/muc/members_only.lib.lua index 64587726..b10dc120 100644 --- a/plugins/muc/members_only.lib.lua +++ b/plugins/muc/members_only.lib.lua @@ -122,7 +122,7 @@ module:hook("muc-occupant-pre-join", function(event) local affiliation = room:get_affiliation(stanza.attr.from); if valid_affiliations[affiliation or "none"] <= valid_affiliations.none then local reply = st.error_reply(stanza, "auth", "registration-required", nil, room.jid):up(); - event.origin.send(reply:tag("x", {xmlns = "http://jabber.org/protocol/muc"})); + event.origin.send(reply); return true; end end |