# HG changeset patch # User Matthew Wild # Date 1738923576 0 # Node ID 31f8fd2bcab9063e785e1ee35faa4cae62189355 # Parent 5abdcad8c2e0cd94e7a44718ac2b02b99cf40ebf MUC: Don't inform people about the avatar hash when there is none diff -r 5abdcad8c2e0 -r 31f8fd2bcab9 plugins/muc/vcard.lib.lua --- a/plugins/muc/vcard.lib.lua Fri Feb 07 09:22:52 2025 +0100 +++ b/plugins/muc/vcard.lib.lua Fri Feb 07 10:19:36 2025 +0000 @@ -21,6 +21,7 @@ local function send_avatar_hash(room, to) local hash = get_avatar_hash(room); + if not hash and to then return; end -- Don't announce when no avatar local presence_vcard = st.presence({to = to, from = room.jid}) :tag("x", { xmlns = "vcard-temp:x:update" })