mod_vcard_legacy: Limit injection of XEP-0153 to normal presence (fixes #1252)

This commit is contained in:
Kim Alvefur 2018-12-01 00:11:49 +01:00
parent 6176e9ff1b
commit 41656354bf

View file

@ -274,6 +274,7 @@ local function inject_xep153(event)
local origin, stanza = event.origin, event.stanza;
local username = origin.username;
if not username then return end
if stanza.attr.type then return end
local pep_service = mod_pep.get_pep_service(username);
stanza:remove_children("x", "vcard-temp:x:update");