mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_presence: Fixed a traceback.
This commit is contained in:
parent
2c20356058
commit
c7af4d8bf5
1 changed files with 2 additions and 1 deletions
|
@ -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?
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue