Allow U2F on Edge (#804)

This commit is contained in:
Thomas Rittson 2021-01-25 10:21:03 +10:00 committed by GitHub
parent bcd488bb87
commit 8c0bc023b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 {