mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Merge 0.12->trunk
This commit is contained in:
commit
efb3513dba
1 changed files with 2 additions and 3 deletions
|
@ -56,7 +56,6 @@ local watchdog = require "util.watchdog";
|
|||
local it = require"util.iterators";
|
||||
|
||||
local sessionmanager = require "core.sessionmanager";
|
||||
local core_process_stanza = prosody.core_process_stanza;
|
||||
|
||||
local xmlns_errors = "urn:ietf:params:xml:ns:xmpp-stanzas";
|
||||
local xmlns_delay = "urn:xmpp:delay";
|
||||
|
@ -426,9 +425,9 @@ local function handle_unacked_stanzas(session)
|
|||
session.outgoing_stanza_queue = nil;
|
||||
for stanza in queue._queue:consume() do
|
||||
if not module:fire_event("delivery/failure", { session = session, stanza = stanza }) then
|
||||
if stanza.attr.type ~= "error" and stanza.attr.to ~= session.full_jid then
|
||||
if stanza.attr.type ~= "error" and stanza.attr.from ~= session.full_jid then
|
||||
local reply = st.error_reply(stanza, "cancel", "recipient-unavailable");
|
||||
core_process_stanza(session, reply);
|
||||
module:send(reply);
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue