From fda42e5230c4c7b4bc95c673ddfbc8bbd5c098e3 Mon Sep 17 00:00:00 2001 From: damencho Date: Mon, 18 Aug 2025 10:19:17 -0500 Subject: [PATCH] fix: More fixes sending metadata to jicofo. f1a0012 was not enough to address the issue. --- resources/prosody-plugins/mod_room_metadata_component.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/resources/prosody-plugins/mod_room_metadata_component.lua b/resources/prosody-plugins/mod_room_metadata_component.lua index a6d7f578db..30dcbd5e71 100644 --- a/resources/prosody-plugins/mod_room_metadata_component.lua +++ b/resources/prosody-plugins/mod_room_metadata_component.lua @@ -317,8 +317,7 @@ end -- Send a message update for metadata before sending the first self presence function filter_stanza(stanza, session) - if not stanza.attr or not stanza.attr.to or stanza.name ~= 'presence' - or stanza.attr.type == 'unavailable' or ends_with(stanza.attr.from, '/focus') then + if not stanza.attr or not stanza.attr.to or stanza.name ~= 'presence' or stanza.attr.type == 'unavailable' then return stanza; end