1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 06:43:35 +00:00

Hide biometric setting when running in Android (#1907)

This commit is contained in:
Oscar Hinton
2021-07-16 10:11:21 +02:00
committed by GitHub
parent b99a81a1b9
commit 056fdba6dd

View File

@@ -314,6 +314,11 @@ export default class BrowserPlatformUtilsService implements PlatformUtilsService
}
async supportsBiometric() {
const platformInfo = await BrowserApi.getPlatformInfo();
if (platformInfo.os === 'android') {
return false;
}
if (this.isFirefox()) {
return parseInt((await browser.runtime.getBrowserInfo()).version.split('.')[0], 10) >= 87;
}