From 8c0bc023b706c4c62c94e47c6ec80830c35e06e5 Mon Sep 17 00:00:00 2001 From: Thomas Rittson <31796059+eliykat@users.noreply.github.com> Date: Mon, 25 Jan 2021 10:21:03 +1000 Subject: [PATCH] Allow U2F on Edge (#804) --- src/services/webPlatformUtils.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/webPlatformUtils.service.ts b/src/services/webPlatformUtils.service.ts index b51798867e..90d72c3de9 100644 --- a/src/services/webPlatformUtils.service.ts +++ b/src/services/webPlatformUtils.service.ts @@ -162,7 +162,7 @@ export class WebPlatformUtilsService implements PlatformUtilsService { if (win != null && (win as any).u2f != null) { return true; } - return this.isChrome() || ((this.isOpera() || this.isVivaldi()) && !Utils.isMobileBrowser); + return this.isChrome() || ((this.isEdge() || this.isOpera() || this.isVivaldi()) && !Utils.isMobileBrowser); } supportsDuo(): boolean {