ソースを参照

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

master
Simon Honegger 5年前
コミット
af39186a5f
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      conference.js

+ 1
- 1
conference.js ファイルの表示

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

読み込み中…
キャンセル
保存