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 | 8a2a50c07a67d4d072e3dd045f9b0058e967fc0e (patch) | |
tree | 67009dfef0897bae451e4f61375de61a1c624406 /plugins | |
parent | d471c7b124575cb2657c0e80711e8803f797b25f (diff) | |
download | prosody-8a2a50c07a67d4d072e3dd045f9b0058e967fc0e.tar.gz prosody-8a2a50c07a67d4d072e3dd045f9b0058e967fc0e.zip |
mod_disco: Correctly set the 'node' attr (fixes #449)
Diffstat (limited to 'plugins')
-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; |