# HG changeset patch # User Kim Alvefur # Date 1543147477 -3600 # Node ID 28d4b9d5a432a66029b07bc2e12099f8802e9d92 # Parent 78caa4aafda14bbfe0ba6d48a7327f95849dc6c9 MUC: Fix traceback on muc#admin query with missing child (#1242) Caused by a missing return statement introduced in 494938dec5d8 diff -r 78caa4aafda1 -r 28d4b9d5a432 plugins/muc/muc.lib.lua --- a/plugins/muc/muc.lib.lua Sun Nov 18 15:40:24 2018 +0000 +++ b/plugins/muc/muc.lib.lua Sun Nov 25 13:04:37 2018 +0100 @@ -904,6 +904,7 @@ local item = stanza.tags[1].tags[1]; if not item then origin.send(st.error_reply(stanza, "cancel", "bad-request")); + return true; end if item.attr.jid then -- Validate provided JID item.attr.jid = jid_prep(item.attr.jid);