diff options
author | Kim Alvefur <zash@zash.se> | 2017-01-02 01:59:03 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-01-02 01:59:03 +0100 |
commit | 0516532553fea667f2f96145ed93eac85ee9135c (patch) | |
tree | 0a54c2ff5d21b1d7e272182e37e4cb8a3e5b2c42 /core/stanza_router.lua | |
parent | 49fbb1c49373db270217e464048502c262bf614b (diff) | |
download | prosody-0516532553fea667f2f96145ed93eac85ee9135c.tar.gz prosody-0516532553fea667f2f96145ed93eac85ee9135c.zip |
stanza_router: Fix typo
Diffstat (limited to 'core/stanza_router.lua')
-rw-r--r-- | core/stanza_router.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua index 98952faf..228fed80 100644 --- a/core/stanza_router.lua +++ b/core/stanza_router.lua @@ -74,7 +74,7 @@ function core_process_stanza(origin, stanza) 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 |