fix(prejoin) guard case for locationUrl being falsy in prejoin screen

This commit is contained in:
Tudor-Ovidiu Avram 2020-10-14 12:20:32 +03:00 committed by vp8x8
parent 9434d3c349
commit bf6a1540df
1 changed files with 4 additions and 1 deletions

View File

@ -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.