enabled accounts on Edge

This commit is contained in:
Danny Coates 2019-02-25 11:44:44 -08:00
parent c6cc5f4ac4
commit cccc1a5383
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
4 changed files with 16 additions and 2 deletions

View file

@ -86,7 +86,7 @@ export default async function getCapabilities() {
}
let account = typeof AUTH_CONFIG !== 'undefined';
try {
account = account && !!localStorage && browserName() !== 'edge';
account = account && !!localStorage;
} catch (e) {
account = false;
}