feat(base/conference): get subject and localSubject from config (#14520)

* feat(base/conference): fixed getting localSubject, subject and parsing url params.
This commit is contained in:
Calinteodor
2024-03-26 16:07:11 +02:00
committed by GitHub
parent 9727951a77
commit 9b798b4514
8 changed files with 59 additions and 49 deletions

View File

@@ -50,6 +50,9 @@ export default class PrejoinApp extends BaseApp<Props> {
? store.getState()['features/base/settings']
: { startWithAudioMuted: undefined,
startWithVideoMuted: undefined };
const { locationURL } = store
? store.getState()['features/base/connection']
: { locationURL: undefined };
dispatch?.(setConfig({
prejoinConfig: {
@@ -57,7 +60,7 @@ export default class PrejoinApp extends BaseApp<Props> {
},
startWithAudioMuted,
startWithVideoMuted
}));
}, locationURL));
await dispatch?.(setupInitialDevices());
const { tryCreateLocalTracks, errors } = createPrejoinTracks();