mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_presence: Don't stop pre-event for outgoing probes.
This commit is contained in:
parent
a5f32b09de
commit
dfb8c6b98c
1 changed files with 4 additions and 1 deletions
|
@ -187,7 +187,10 @@ function handle_outbound_presence_subscriptions_and_probes(origin, stanza, from_
|
|||
local st_from, st_to = stanza.attr.from, stanza.attr.to;
|
||||
stanza.attr.from, stanza.attr.to = from_bare, to_bare;
|
||||
log("debug", "outbound presence "..stanza.attr.type.." from "..from_bare.." for "..to_bare);
|
||||
if stanza.attr.type == "subscribe" then
|
||||
if stanza.attr.type == "probe" then
|
||||
stanza.attr.from, stanza.attr.to = st_from, st_to;
|
||||
return;
|
||||
elseif stanza.attr.type == "subscribe" then
|
||||
-- 1. route stanza
|
||||
-- 2. roster push (subscription = none, ask = subscribe)
|
||||
if rostermanager.set_contact_pending_out(node, host, to_bare) then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue