mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_presence: Send unavailable presence in current thread run
`session:dispatch_stanza(pres)` enqueues processing of the stanza in the sessions async thread, but becasue the entire stream close handling is now in that thread it would process the presence after the stream and session was completely closed, leading to weird errors "sent to a resting session". We call core_process_stanza() since this is what :dispatch_stanza calls in the end.
This commit is contained in:
parent
6b456feb29
commit
71d6bde69c
1 changed files with 2 additions and 1 deletions
|
@ -14,6 +14,7 @@ local s_find = string.find;
|
|||
local tonumber = tonumber;
|
||||
|
||||
local core_post_stanza = prosody.core_post_stanza;
|
||||
local core_process_stanza = prosody.core_process_stanza;
|
||||
local st = require "util.stanza";
|
||||
local jid_split = require "util.jid".split;
|
||||
local jid_bare = require "util.jid".bare;
|
||||
|
@ -370,7 +371,7 @@ module:hook("resource-unbind", function(event)
|
|||
if err then
|
||||
pres:tag("status"):text("Disconnected: "..err):up();
|
||||
end
|
||||
session:dispatch_stanza(pres);
|
||||
core_process_stanza(session, pres);
|
||||
elseif session.directed then
|
||||
local pres = st.presence{ type = "unavailable", from = session.full_jid };
|
||||
if err then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue