mod_vcard: Fire event when vcard updated

This commit is contained in:
Matthew Wild 2025-02-06 17:02:29 +00:00
parent 810b59d50e
commit eac45d938a

View file

@ -35,6 +35,7 @@ local function handle_vcard(event)
if not to then if not to then
if vcards:set(session.username, st.preserialize(stanza.tags[1])) then if vcards:set(session.username, st.preserialize(stanza.tags[1])) then
session.send(st.reply(stanza)); session.send(st.reply(stanza));
module:fire_event("vcard-updated", event);
else else
-- TODO unable to write file, file may be locked, etc, what's the correct error? -- TODO unable to write file, file may be locked, etc, what's the correct error?
session.send(st.error_reply(stanza, "wait", "internal-server-error")); session.send(st.error_reply(stanza, "wait", "internal-server-error"));