Parcourir la source

fix: typeof returns a string, so this condition was always true

j8
Simon Honegger il y a 4 ans
Parent
révision
af39186a5f
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      conference.js

+ 1
- 1
conference.js Voir le fichier

1261
             items[key] = param[1];
1261
             items[key] = param[1];
1262
         }
1262
         }
1263
 
1263
 
1264
-        if (typeof items.e2eekey !== undefined) {
1264
+        if (typeof items.e2eekey !== 'undefined') {
1265
             APP.store.dispatch(setE2EEKey(items.e2eekey));
1265
             APP.store.dispatch(setE2EEKey(items.e2eekey));
1266
 
1266
 
1267
             // Clean URL in browser history.
1267
             // Clean URL in browser history.

Chargement…
Annuler
Enregistrer