From af39186a5f23794ee6b0f97fe9897dff69f59005 Mon Sep 17 00:00:00 2001 From: Simon Honegger Date: Fri, 29 May 2020 11:03:36 +0200 Subject: [PATCH] fix: typeof returns a string, so this condition was always true --- conference.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conference.js b/conference.js index d8968c02af17..92046c0dd6ae 100644 --- a/conference.js +++ b/conference.js @@ -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.