aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2010-06-03 18:01:05 +0500
committerWaqas Hussain <waqas20@gmail.com>2010-06-03 18:01:05 +0500
commit4d4959540caf49b9659e9d952f8dbdf561c1b544 (patch)
tree308dd5e03b42dbc247788dc5ad98b4a8454b57bc /plugins
parentef6c6f531d1c2c9c16989ecf4d975009395536a1 (diff)
downloadprosody-4d4959540caf49b9659e9d952f8dbdf561c1b544.tar.gz
prosody-4d4959540caf49b9659e9d952f8dbdf561c1b544.zip
mod_presence: Send unavailable presence in response to probes to the sender's full JID, not bare JID.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_presence.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_presence.lua b/plugins/mod_presence.lua
index 9071ae4c..4fb8c3e4 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, core_route_stanza) 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"}));