1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

always allow chrome to use u2f

This commit is contained in:
Kyle Spearrin
2019-01-10 11:23:16 -05:00
parent 3942409c9a
commit a48cc2a7f3
2 changed files with 2 additions and 2 deletions

2
jslib

Submodule jslib updated: 65bd33d860...2e9ce15715

View File

@@ -164,7 +164,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.isOpera() || this.isVivaldi()) && !Utils.isMobileBrowser);
}
supportsDuo(): boolean {