# HG changeset patch # User Kim Alvefur # Date 1483318743 -3600 # Node ID 802dc0691177f704fa97546fa558e5eda5f99105 # Parent 1aea8978d7ef92cd6ff9cfaa207ccdf9dab1adb7 stanza_router: Fix typo diff -r 1aea8978d7ef -r 802dc0691177 core/stanza_router.lua --- a/core/stanza_router.lua Mon Jan 02 01:51:39 2017 +0100 +++ b/core/stanza_router.lua Mon Jan 02 01:59:03 2017 +0100 @@ -74,7 +74,7 @@ origin.send(st.error_reply(stanza, "modify", "bad-request", "Missing required 'id' attribute")); return; elseif (st_type == "set" or st_type == "get") and (#stanza.tags ~= 1) then - origin.send(st.error_reply(stanza, "modify", "bad-request", "Incorrect number of children for IQ stanz")); + origin.send(st.error_reply(stanza, "modify", "bad-request", "Incorrect number of children for IQ stanza")); return; end end