fix: typeof returns a string, so this condition was always true
This commit is contained in:
parent
d4d1d0aa70
commit
af39186a5f
|
@ -1261,7 +1261,7 @@ export default {
|
|||
items[key] = param[1];
|
||||
}
|
||||
|
||||
if (typeof items.e2eekey !== undefined) {
|
||||
if (typeof items.e2eekey !== 'undefined') {
|
||||
APP.store.dispatch(setE2EEKey(items.e2eekey));
|
||||
|
||||
// Clean URL in browser history.
|
||||
|
|
Loading…
Reference in New Issue