diff options
author | Kim Alvefur <zash@zash.se> | 2016-12-13 18:15:17 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-12-13 18:15:17 +0100 |
commit | e701756ba976c28d2532f3d113f24429c457dec5 (patch) | |
tree | a9e59e3c8fba4c4967beb53eb5690135075ae802 /plugins/mod_saslauth.lua | |
parent | 0f0d87f07b8d6e9109b5fb3358078c663beab4d5 (diff) | |
download | prosody-e701756ba976c28d2532f3d113f24429c457dec5.tar.gz prosody-e701756ba976c28d2532f3d113f24429c457dec5.zip |
core.sessionmanager, mod_saslauth: Introduce intermediate session type for authenticated but unbound sessions so that resource binding is not treated as a normal stanza
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 bb36600b..9917c303 100644 --- a/plugins/mod_saslauth.lua +++ b/plugins/mod_saslauth.lua @@ -273,7 +273,7 @@ module:hook("s2s-stream-features", function(event) end end); -module:hook("iq/self/urn:ietf:params:xml:ns:xmpp-bind:bind", function(event) +module:hook("stanza/iq/urn:ietf:params:xml:ns:xmpp-bind:bind", function(event) local origin, stanza = event.origin, event.stanza; local resource; if stanza.attr.type == "set" then |