diff options
author | Kim Alvefur <zash@zash.se> | 2014-07-04 22:52:34 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-07-04 22:52:34 +0200 |
commit | f56c435f182f95f0c1149083634a62b6e52a09c1 (patch) | |
tree | 4ee710468ebed7a73d392f011b38e251640508f9 /plugins/mod_presence.lua | |
parent | 5abddcbf78e80ac97a20493640ca7b2808cb0788 (diff) | |
download | prosody-f56c435f182f95f0c1149083634a62b6e52a09c1.tar.gz prosody-f56c435f182f95f0c1149083634a62b6e52a09c1.zip |
mod_lastactivity, mod_legacyauth, mod_presence, mod_saslauth, mod_tls: Use the newer stanza:get_child APIs and optimize away some table lookups
Diffstat (limited to 'plugins/mod_presence.lua')
-rw-r--r-- | plugins/mod_presence.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_presence.lua b/plugins/mod_presence.lua index 2577573c..9e8f37db 100644 --- a/plugins/mod_presence.lua +++ b/plugins/mod_presence.lua @@ -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 |