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_saslauth.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_saslauth.lua')
-rw-r--r-- | plugins/mod_saslauth.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_saslauth.lua b/plugins/mod_saslauth.lua index df60aefa..a07c5fd2 100644 --- a/plugins/mod_saslauth.lua +++ b/plugins/mod_saslauth.lua @@ -284,7 +284,7 @@ module:hook("iq/self/urn:ietf:params:xml:ns:xmpp-bind:bind", function(event) local resource; if stanza.attr.type == "set" then local bind = stanza.tags[1]; - resource = bind:child_with_name("resource"); + resource = bind:get_child("resource"); resource = resource and #resource.tags == 0 and resource[1] or nil; end local success, err_type, err, err_msg = sm_bind_resource(origin, resource); |