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:
parent
a6bc51cff1
commit
65589937ea
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue