mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
Merge with 0.5
This commit is contained in:
commit
6ac4d843f0
2 changed files with 2 additions and 6 deletions
|
@ -150,11 +150,7 @@ function core_post_stanza(origin, stanza)
|
|||
component_handle_stanza(origin, stanza);
|
||||
return;
|
||||
end
|
||||
if not modules_handle_stanza(h.host, origin, stanza) then
|
||||
if stanza.attr.type ~= "result" and stanza.attr.type ~= "error" then
|
||||
origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
|
||||
end
|
||||
end
|
||||
modules_handle_stanza(h.host, origin, stanza);
|
||||
else
|
||||
core_route_stanza(origin, stanza);
|
||||
end
|
||||
|
|
|
@ -105,7 +105,7 @@ local function call_callback(request, err)
|
|||
if response then
|
||||
if response == true and not request.destroyed then
|
||||
-- Keep connection open, we will reply later
|
||||
log("warn", "Request %s left open, on_destroy is %s", request.id, tostring(request.on_destroy));
|
||||
log("debug", "Request %s left open, on_destroy is %s", request.id, tostring(request.on_destroy));
|
||||
elseif response ~= true then
|
||||
-- Assume response
|
||||
send_response(request, response);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue