# HG changeset patch # User Matthew Wild # Date 1738861349 0 # Node ID 6902bb3dd196c95e62798974e808648fb4c4e4a3 # Parent 39c35f7e6cfae7a6ecb88ec1915d225be464fc1c mod_vcard: Fire event when vcard updated diff -r 39c35f7e6cfa -r 6902bb3dd196 plugins/mod_vcard.lua --- a/plugins/mod_vcard.lua Thu Feb 06 17:02:02 2025 +0000 +++ b/plugins/mod_vcard.lua Thu Feb 06 17:02:29 2025 +0000 @@ -35,6 +35,7 @@ if not to then if vcards:set(session.username, st.preserialize(stanza.tags[1])) then session.send(st.reply(stanza)); + module:fire_event("vcard-updated", event); else -- 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"));