Skip to content

Commit

Permalink
fix: typeof returns a string, so this condition was always true
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoene84 authored and saghul committed May 29, 2020
1 parent d4d1d0a commit af39186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conference.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit af39186

Please sign in to comment.