aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2017-05-27 15:53:30 +0100
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2017-05-27 15:53:30 +0100
commit8d1b87c4ab7ccc9d0bae3429a4f67c430be75c93 (patch)
tree3fd46aa8b7bfb59a3ba612824d10d6d11d2eef52 /plugins
parente1c4cfd9ccd59c9bba7804b355bd9a20dab94ca8 (diff)
downloadprosody-8d1b87c4ab7ccc9d0bae3429a4f67c430be75c93.tar.gz
prosody-8d1b87c4ab7ccc9d0bae3429a4f67c430be75c93.zip
mod_disco: Add an account/registered identity on subscribed accounts, fixes #826.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_disco.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_disco.lua b/plugins/mod_disco.lua
index b41f9651..71a04a2d 100644
--- a/plugins/mod_disco.lua
+++ b/plugins/mod_disco.lua
@@ -138,6 +138,7 @@ module:hook("iq/bare/http://jabber.org/protocol/disco#info:query", function(even
if not stanza.attr.to or is_contact_subscribed(username, module.host, jid_bare(stanza.attr.from)) then
local reply = st.reply(stanza):tag('query', {xmlns='http://jabber.org/protocol/disco#info'});
if not reply.attr.from then reply.attr.from = origin.username.."@"..origin.host; end -- COMPAT To satisfy Psi when querying own account
+ reply:tag('identity', {category='account', type='registered'}):up();
module:fire_event("account-disco-info", { origin = origin, stanza = reply });
origin.send(reply);
return true;