diff options
author | Kim Alvefur <zash@zash.se> | 2017-03-24 00:25:49 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-03-24 00:25:49 +0100 |
commit | b1131ced697722379faff3f5871f24a385fe666f (patch) | |
tree | 67009dfef0897bae451e4f61375de61a1c624406 | |
parent | bcc0390cb6e9230472f7dae878f84ca7d6017de2 (diff) | |
download | prosody-b1131ced697722379faff3f5871f24a385fe666f.tar.gz prosody-b1131ced697722379faff3f5871f24a385fe666f.zip |
mod_disco: Correctly set the 'node' attr (fixes #449)
-rw-r--r-- | plugins/mod_disco.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_disco.lua b/plugins/mod_disco.lua index 72c9a34c..b41f9651 100644 --- a/plugins/mod_disco.lua +++ b/plugins/mod_disco.lua @@ -99,7 +99,7 @@ module:hook("iq/host/http://jabber.org/protocol/disco#info:query", function(even local node = stanza.tags[1].attr.node; if node and node ~= "" and node ~= "http://prosody.im#"..get_server_caps_hash() then return; end -- TODO fire event? local reply_query = get_server_disco_info(); - reply_query.node = node; + reply_query.attr.node = node; local reply = st.reply(stanza):add_child(reply_query); origin.send(reply); return true; |