mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_presence: Added option 'ignore_presence_priority'.
This commit is contained in:
parent
7b5c488942
commit
3aedbba678
1 changed files with 10 additions and 0 deletions
|
@ -62,7 +62,17 @@ local function recalc_resource_map(user)
|
|||
end
|
||||
end
|
||||
|
||||
local ignore_presence_priority = module:get_option("ignore_presence_priority");
|
||||
|
||||
function handle_normal_presence(origin, stanza, core_route_stanza)
|
||||
if ignore_presence_priority then
|
||||
local priority = stanza:child_with_name("priority");
|
||||
if priority and priority[1] ~= "0" then
|
||||
for i=#priority.tags,1,-1 do priority.tags[i] = nil; end
|
||||
for i=#priority,1,-1 do priority[i] = nil; end
|
||||
priority[1] = "0";
|
||||
end
|
||||
end
|
||||
if full_sessions[origin.full_jid] then -- if user is still connected
|
||||
origin.send(stanza); -- reflect their presence back to them
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue