mod_component: Return true from stanza handler to indicate that we actually did handle the stanza.

This commit is contained in:
Waqas Hussain 2010-11-12 22:39:37 +05:00
parent e62e7d0162
commit 42993c2ec2

View file

@ -41,6 +41,7 @@ local function handle_stanza(event)
event.origin.send(st.error_reply(stanza, "wait", "service-unavailable", "Component unavailable"));
end
end
return true;
end
module:hook("iq/bare", handle_stanza);