mirror of
https://github.com/jech/galene.git
synced 2024-11-22 08:35:57 +01:00
Call reflectSettings synchronously.
We could previously attempt to display a remote stream before reflectSetting initialised the settings.
This commit is contained in:
parent
e7af7cbed4
commit
58934a1a46
1 changed files with 2 additions and 1 deletions
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue