From f3887c158b8d0a698168da8f3a67389a99a91699 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sat, 27 May 2017 15:53:30 +0100 Subject: mod_disco: Add an account/registered identity on subscribed accounts, fixes #826. --- plugins/mod_disco.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'plugins/mod_disco.lua') 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; -- cgit v1.2.3