Mercurial > prosody-hg
comparison plugins/muc/muc.lib.lua @ 9641:0ce404230388
Merge 0.11->trunk
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sun, 25 Nov 2018 13:31:40 +0100 |
| parents | 66c6edf56397 28d4b9d5a432 |
| children | 0f43b901c854 |
comparison
equal
deleted
inserted
replaced
| 9635:fc2266339cd8 | 9641:0ce404230388 |
|---|---|
| 902 | 902 |
| 903 function room_mt:handle_admin_query_set_command(origin, stanza) | 903 function room_mt:handle_admin_query_set_command(origin, stanza) |
| 904 local item = stanza.tags[1].tags[1]; | 904 local item = stanza.tags[1].tags[1]; |
| 905 if not item then | 905 if not item then |
| 906 origin.send(st.error_reply(stanza, "cancel", "bad-request")); | 906 origin.send(st.error_reply(stanza, "cancel", "bad-request")); |
| 907 return true; | |
| 907 end | 908 end |
| 908 if item.attr.jid then -- Validate provided JID | 909 if item.attr.jid then -- Validate provided JID |
| 909 item.attr.jid = jid_prep(item.attr.jid); | 910 item.attr.jid = jid_prep(item.attr.jid); |
| 910 if not item.attr.jid then | 911 if not item.attr.jid then |
| 911 origin.send(st.error_reply(stanza, "modify", "jid-malformed")); | 912 origin.send(st.error_reply(stanza, "modify", "jid-malformed")); |
