From f40166ff858007b0a0aa34b7b23a289587b5e48f Mon Sep 17 00:00:00 2001 From: Ramon Souza <contato@ramonsouza.com> Date: Mon, 2 Aug 2021 14:41:29 -0300 Subject: [PATCH] get overrideLocale value from settings file in guest wait --- bigbluebutton-html5/private/static/guest-wait/guest-wait.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigbluebutton-html5/private/static/guest-wait/guest-wait.html b/bigbluebutton-html5/private/static/guest-wait/guest-wait.html index b3d34d1028..d4f93f5837 100755 --- a/bigbluebutton-html5/private/static/guest-wait/guest-wait.html +++ b/bigbluebutton-html5/private/static/guest-wait/guest-wait.html @@ -114,7 +114,7 @@ const DEFAULT_LANGUAGE = 'en'; const LOCALES_ENDPOINT = '/html5client/locale'; const url = new URL(`${window.location.origin}${LOCALES_ENDPOINT}`); - url.search = `locale=${navigator.language}`; + url.search = `locale=${navigator.language}&init=true`; const localesPath = 'locales'; -- GitLab