aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-03-24 00:25:49 +0100
committerKim Alvefur <zash@zash.se>2017-03-24 00:25:49 +0100
commitfcdbf0616d0c228cc524edb4c7422aeae6bc8789 (patch)
tree67009dfef0897bae451e4f61375de61a1c624406
parent77b7ae7fe3154ce4bad3db4b23ac656c3d5dfce0 (diff)
downloadprosody-fcdbf0616d0c228cc524edb4c7422aeae6bc8789.tar.gz
prosody-fcdbf0616d0c228cc524edb4c7422aeae6bc8789.zip
mod_disco: Correctly set the 'node' attr (fixes #449)
-rw-r--r--plugins/mod_disco.lua2
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;