# HG changeset patch # User Waqas Hussain # Date 1243955718 -18000 # Node ID ac82c7b9c76b519a825b5a75dd98df6aa97271a4 # Parent a9b1675ad16ebdd1db6cb739beb4bfe9197c87ee mod_presence: Fix a global access diff -r a9b1675ad16e -r ac82c7b9c76b 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;