mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_lastactivity, mod_legacyauth, mod_presence, mod_saslauth, mod_tls: Use the newer stanza:get_child APIs and optimize away some table lookups
This commit is contained in:
parent
1440be730c
commit
8003a40b0a
6 changed files with 13 additions and 12 deletions
|
@ -55,14 +55,14 @@ local ignore_presence_priority = module:get_option("ignore_presence_priority");
|
|||
|
||||
function handle_normal_presence(origin, stanza)
|
||||
if ignore_presence_priority then
|
||||
local priority = stanza:child_with_name("priority");
|
||||
local priority = stanza:get_child("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
|
||||
local priority = stanza:child_with_name("priority");
|
||||
local priority = stanza:get_child("priority");
|
||||
if priority and #priority > 0 then
|
||||
priority = t_concat(priority);
|
||||
if s_find(priority, "^[+-]?[0-9]+$") then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue