Commit 58934a1a authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Call reflectSettings synchronously.

We could previously attempt to display a remote stream before
reflectSetting initialised the settings.
parent e7af7cbe
......@@ -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');
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment