mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_iq: Don't treat an iq as handled if session.send() returns false
This commit is contained in:
parent
2ab34e6019
commit
1135a220df
1 changed files with 1 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue