fix(prejoin) guard case for locationUrl being falsy in prejoin screen
This commit is contained in:
parent
9434d3c349
commit
bf6a1540df
|
@ -77,9 +77,12 @@ export function getConferenceOptions(stateful) {
|
|||
options.statisticsId = email;
|
||||
}
|
||||
|
||||
if (locationURL) {
|
||||
options.confID = `${locationURL.host}${getBackendSafePath(locationURL.pathname)}`;
|
||||
}
|
||||
|
||||
options.applicationName = getName();
|
||||
options.getWiFiStatsMethod = getWiFiStatsMethod;
|
||||
options.confID = `${locationURL.host}${getBackendSafePath(locationURL.pathname)}`;
|
||||
options.createVADProcessor = createRnnoiseProcessorPromise;
|
||||
|
||||
// Disable CallStats, if requessted.
|
||||
|
|
Loading…
Reference in New Issue