mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_component: Fix a wrongly-placed closing parenthesis, fixes #1164.
This commit is contained in:
parent
29ebeb2da4
commit
ba5f71d08b
1 changed files with 4 additions and 3 deletions
|
@ -119,9 +119,10 @@ function module.add_host(module)
|
|||
if query.name == "query" and query.attr.xmlns == "http://jabber.org/protocol/disco#info" and (not node or node == "") then
|
||||
local name = module:get_option_string("name");
|
||||
if name then
|
||||
event.origin.send(st.reply(stanza):tag("query", { xmlns = "http://jabber.org/protocol/disco#info" })
|
||||
:tag("identity", { category = "component", type = "generic", name = module:get_option_string("name", "Prosody") })):up()
|
||||
:tag("feature", { var = "http://jabber.org/protocol/disco#info" }):up()
|
||||
local reply = st.reply(stanza):tag("query", { xmlns = "http://jabber.org/protocol/disco#info" })
|
||||
:tag("identity", { category = "component", type = "generic", name = module:get_option_string("name", "Prosody") }):up()
|
||||
:tag("feature", { var = "http://jabber.org/protocol/disco#info" }):up();
|
||||
event.origin.send(reply);
|
||||
return true;
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue