diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-07-22 17:08:09 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-07-22 17:08:09 +0100 |
commit | 8a965123f5c38071e14ee2f43fd203706ab56f95 (patch) | |
tree | 2593981ba2580f7c824501dc13223411d34fab49 /plugins/mod_iq.lua | |
parent | 92d6725339ce0233dffd2ecde606d684d05d4c93 (diff) | |
parent | 6aa575f09b858fef93101afbc7c776f138aca380 (diff) | |
download | prosody-8a965123f5c38071e14ee2f43fd203706ab56f95.tar.gz prosody-8a965123f5c38071e14ee2f43fd203706ab56f95.zip |
Merge 0.9->trunk
Diffstat (limited to 'plugins/mod_iq.lua')
-rw-r--r-- | plugins/mod_iq.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/plugins/mod_iq.lua b/plugins/mod_iq.lua index 6412ad11..8044a533 100644 --- a/plugins/mod_iq.lua +++ b/plugins/mod_iq.lua @@ -17,10 +17,7 @@ if module:get_host_type() == "local" then local origin, stanza = data.origin, data.stanza; local session = full_sessions[stanza.attr.to]; - if session then - -- TODO fire post processing event - session.send(stanza); - else -- resource not online + if not (session and session.send(stanza)) then if stanza.attr.type == "get" or stanza.attr.type == "set" then origin.send(st.error_reply(stanza, "cancel", "service-unavailable")); end |