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 | 8003a40b0a3895399912c5042e6e8af41c61eb04 (patch) | |
tree | 4ee710468ebed7a73d392f011b38e251640508f9 /plugins/mod_lastactivity.lua | |
parent | 1440be730c44897aa5f1aed4cf7d7f87e4489334 (diff) | |
download | prosody-8003a40b0a3895399912c5042e6e8af41c61eb04.tar.gz prosody-8003a40b0a3895399912c5042e6e8af41c61eb04.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_lastactivity.lua')
-rw-r--r-- | plugins/mod_lastactivity.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/mod_lastactivity.lua b/plugins/mod_lastactivity.lua index fabf07b4..2dd61699 100644 --- a/plugins/mod_lastactivity.lua +++ b/plugins/mod_lastactivity.lua @@ -19,8 +19,7 @@ module:hook("pre-presence/bare", function(event) local stanza = event.stanza; if not(stanza.attr.to) and stanza.attr.type == "unavailable" then local t = os.time(); - local s = stanza:child_with_name("status"); - s = s and #s.tags == 0 and s[1] or ""; + local s = stanza:get_child_text("status"); map[event.origin.username] = {s = s, t = t}; end end, 10); |