diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-06-03 18:01:05 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-06-03 18:01:05 +0500 |
commit | bc5b27f0981edf60d864a54f83037925b43518a7 (patch) | |
tree | 24aed68e35e80439d2fd059b29ff7c5c9d0cc97f /plugins/mod_presence.lua | |
parent | 27869c5ecb1a8a0e0c969bc9ecc829cb61f186d4 (diff) | |
download | prosody-bc5b27f0981edf60d864a54f83037925b43518a7.tar.gz prosody-bc5b27f0981edf60d864a54f83037925b43518a7.zip |
mod_presence: Send unavailable presence in response to probes to the sender's full JID, not bare JID.
Diffstat (limited to 'plugins/mod_presence.lua')
-rw-r--r-- | plugins/mod_presence.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_presence.lua b/plugins/mod_presence.lua index 20afc2da..943e318f 100644 --- a/plugins/mod_presence.lua +++ b/plugins/mod_presence.lua @@ -231,7 +231,7 @@ function handle_inbound_presence_subscriptions_and_probes(origin, stanza, from_b local result, err = rostermanager.is_contact_subscribed(node, host, from_bare); if result then if 0 == send_presence_of_available_resources(node, host, st_from, origin) then - core_route_stanza(hosts[host], st.presence({from=to_bare, to=from_bare, type="unavailable"})); -- TODO send last activity + core_route_stanza(hosts[host], st.presence({from=to_bare, to=st_from, type="unavailable"})); -- TODO send last activity end elseif not err then core_route_stanza(hosts[host], st.presence({from=to_bare, to=from_bare, type="unsubscribed"})); |