Bladeren bron

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

master
Tudor-Ovidiu Avram 4 jaren geleden
bovenliggende
commit
bf6a1540df
1 gewijzigde bestanden met toevoegingen van 4 en 1 verwijderingen
  1. 4
    1
      react/features/conference/functions.web.js

+ 4
- 1
react/features/conference/functions.web.js Bestand weergeven

77
         options.statisticsId = email;
77
         options.statisticsId = email;
78
     }
78
     }
79
 
79
 
80
+    if (locationURL) {
81
+        options.confID = `${locationURL.host}${getBackendSafePath(locationURL.pathname)}`;
82
+    }
83
+
80
     options.applicationName = getName();
84
     options.applicationName = getName();
81
     options.getWiFiStatsMethod = getWiFiStatsMethod;
85
     options.getWiFiStatsMethod = getWiFiStatsMethod;
82
-    options.confID = `${locationURL.host}${getBackendSafePath(locationURL.pathname)}`;
83
     options.createVADProcessor = createRnnoiseProcessorPromise;
86
     options.createVADProcessor = createRnnoiseProcessorPromise;
84
 
87
 
85
     // Disable CallStats, if requessted.
88
     // Disable CallStats, if requessted.

Laden…
Annuleren
Opslaan