24
1
Fork 0

disable accounts on Edge. more crypto errors

This commit is contained in:
Danny Coates 2019-02-21 15:38:36 -08:00
parent de88885189
commit 694e05f738
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
1 changed files with 1 additions and 1 deletions

View File

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