mod_presence: Fix a global access
authorWaqas Hussain <waqas20@gmail.com>
Tue, 02 Jun 2009 20:15:18 +0500
changeset 1287 ac82c7b9c76b
parent 1286 a9b1675ad16e
child 1288 d2dc0954ebfd
mod_presence: Fix a global access
plugins/mod_presence.lua
--- a/plugins/mod_presence.lua	Tue Jun 02 20:10:25 2009 +0500
+++ b/plugins/mod_presence.lua	Tue Jun 02 20:15:18 2009 +0500
@@ -305,8 +305,8 @@
 	local origin, stanza = data.origin, data.stanza;
 
 	local to = stanza.attr.to;
+	local t = stanza.attr.type;
 	if to then
-		local t = stanza.attr.type;
 		if t ~= nil and t ~= "unavailable" and t ~= "error" then -- check for subscriptions and probes sent to bare JID
 			handle_inbound_presence_subscriptions_and_probes(origin, stanza, jid_bare(stanza.attr.from), jid_bare(stanza.attr.to), core_route_stanza);
 			return true;