plugins/mod_presence.lua

changeset 3112
c311fdffccce
parent 3109
34280b1544fc
child 3166
190827ba4591
child 3185
a31559c52842
--- a/plugins/mod_presence.lua	Mon May 24 00:35:08 2010 +0500
+++ b/plugins/mod_presence.lua	Mon May 24 00:37:15 2010 +0500
@@ -228,11 +228,12 @@
 	log("debug", "inbound presence "..stanza.attr.type.." from "..from_bare.." for "..to_bare);
 	
 	if stanza.attr.type == "probe" then
-		if rostermanager.is_contact_subscribed(node, host, from_bare) then
+		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
 			end
-		else
+		elseif not err then
 			core_route_stanza(hosts[host], st.presence({from=to_bare, to=from_bare, type="unsubscribed"}));
 		end
 	elseif stanza.attr.type == "subscribe" then

mercurial