mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_presence: Tag outgoing unavailables generated by a disconnect with a from attribute
This commit is contained in:
parent
23a10d0390
commit
a0b8648d1f
1 changed files with 1 additions and 1 deletions
|
@ -330,7 +330,7 @@ module:hook("resource-unbind", function(event)
|
|||
pres:tag("status"):text("Disconnected: "..err):up();
|
||||
session:dispatch_stanza(pres);
|
||||
elseif session.directed then
|
||||
local pres = st.presence{ type = "unavailable" };
|
||||
local pres = st.presence{ type = "unavailable", from = session.full_jid };
|
||||
if not(err) or err == "closed" then err = "connection closed"; end
|
||||
pres:tag("status"):text("Disconnected: "..err):up();
|
||||
for jid in pairs(session.directed) do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue