mod_presence: Send unavailable presence in response to probes to the sender's full JID, not bare JID.

Thu, 03 Jun 2010 18:01:05 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Thu, 03 Jun 2010 18:01:05 +0500
changeset 3185
a31559c52842
parent 3151
6eca858feb04
child 3186
b308450740b0

mod_presence: Send unavailable presence in response to probes to the sender's full JID, not bare JID.

plugins/mod_presence.lua file | annotate | diff | comparison | revisions
--- a/plugins/mod_presence.lua	Thu Jun 03 12:28:27 2010 +0100
+++ b/plugins/mod_presence.lua	Thu Jun 03 18:01:05 2010 +0500
@@ -231,7 +231,7 @@
 		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"}));

mercurial