1
Fork 0

Call reflectSettings synchronously.

We could previously attempt to display a remote stream before
reflectSetting initialised the settings.
This commit is contained in:
Juliusz Chroboczek 2024-06-10 16:08:36 +02:00
parent e7af7cbed4
commit 58934a1a46
1 changed files with 2 additions and 1 deletions

View File

@ -4051,7 +4051,8 @@ async function start() {
setTitle(groupStatus.displayName || capitalise(group));
addFilters();
setMediaChoices(false).then(e => reflectSettings());
await setMediaChoices(false);
reflectSettings();
if(parms.has('token'))
token = parms.get('token');