mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_presence: Use get_child_text on priority child element (fixes #552)
This commit is contained in:
parent
abdd9866e5
commit
d8b1435c70
1 changed files with 5 additions and 8 deletions
|
@ -40,14 +40,11 @@ function handle_normal_presence(origin, stanza)
|
|||
priority[1] = "0";
|
||||
end
|
||||
end
|
||||
local priority = stanza:get_child("priority");
|
||||
if priority and #priority > 0 then
|
||||
priority = t_concat(priority);
|
||||
if s_find(priority, "^[+-]?[0-9]+$") then
|
||||
priority = tonumber(priority);
|
||||
if priority < -128 then priority = -128 end
|
||||
if priority > 127 then priority = 127 end
|
||||
else priority = 0; end
|
||||
local priority = stanza:get_child_text("priority");
|
||||
if priority and s_find(priority, "^[+-]?[0-9]+$") then
|
||||
priority = tonumber(priority);
|
||||
if priority < -128 then priority = -128 end
|
||||
if priority > 127 then priority = 127 end
|
||||
else priority = 0; end
|
||||
if full_sessions[origin.full_jid] then -- if user is still connected
|
||||
origin.send(stanza); -- reflect their presence back to them
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue