From 694e05f73846408b126de882da78edd955812341 Mon Sep 17 00:00:00 2001 From: Danny Coates Date: Thu, 21 Feb 2019 15:38:36 -0800 Subject: [PATCH] disable accounts on Edge. more crypto errors --- app/capabilities.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/capabilities.js b/app/capabilities.js index 3939fea2..f97d34dc 100644 --- a/app/capabilities.js +++ b/app/capabilities.js @@ -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; }