mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 03:12:29 +00:00
fix(visitors): Fix s2sout host-unknown errors by skipping domain mapping
This commit is contained in:
committed by
Дамян Минков
parent
77b89ece4a
commit
10f77f1fbc
@@ -19,7 +19,7 @@ local internal_room_jid_match_rewrite = util.internal_room_jid_match_rewrite;
|
||||
|
||||
-- We must filter stanzas in order to hook in to all incoming and outgoing messaging which skips the stanza routers
|
||||
function filter_stanza(stanza, session)
|
||||
if stanza.skipMapping then
|
||||
if stanza.skipMapping or session.type == 's2sout' then
|
||||
return stanza;
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user