mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_component: Advertise disco#info in fallback handling of disco#info query (fixes #1062)
This commit is contained in:
parent
76d18a8464
commit
38060a5ccf
1 changed files with 2 additions and 1 deletions
|
@ -120,7 +120,8 @@ function module.add_host(module)
|
|||
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") }))
|
||||
:tag("identity", { category = "component", type = "generic", name = module:get_option_string("name", "Prosody") })):up()
|
||||
:tag("feature", { var = "http://jabber.org/protocol/disco#info" }):up()
|
||||
return true;
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue