fix(breakout,av-moderation): support non-ascii tenant names

Same applies to tenant names as it applies to room names, as the
tenants/subdomains are prefixed to the room names in prosody.

Signed-off-by: Christoph Settgast <csett86@web.de>
This commit is contained in:
Christoph Settgast 2021-12-07 16:14:08 +01:00 committed by Saúl Ibarra Corretgé
parent a6bc51cff1
commit 65589937ea
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ function init_session(event)
-- The room name and optional prefix from the web query
session.jitsi_web_query_room = urlencode(params.room);
session.jitsi_web_query_prefix = params.prefix or "";
session.jitsi_web_query_prefix = urlencode(params.prefix) or "";
end
end