mod_presence: Fixed a traceback.

This commit is contained in:
Waqas Hussain 2010-06-09 22:00:01 +05:00
parent 2c20356058
commit c7af4d8bf5

View file

@ -273,7 +273,8 @@ local outbound_presence_handler = function(data)
end end
local to_bare = jid_bare(to); local to_bare = jid_bare(to);
if not(origin.roster[to_bare] and (origin.roster[to_bare].subscription == "both" or origin.roster[to_bare].subscription == "from")) then -- directed presence local roster = origin.roster;
if roster and not(roster[to_bare] and (roster[to_bare].subscription == "both" or roster[to_bare].subscription == "from")) then -- directed presence
origin.directed = origin.directed or {}; origin.directed = origin.directed or {};
if t then -- removing from directed presence list on sending an error or unavailable if t then -- removing from directed presence list on sending an error or unavailable
origin.directed[to] = nil; -- FIXME does it make more sense to add to_bare rather than to? origin.directed[to] = nil; -- FIXME does it make more sense to add to_bare rather than to?