mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-31 22:51:28 +01:00
Hide biometric setting when running in Android (#1907)
This commit is contained in:
parent
b99a81a1b9
commit
056fdba6dd
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user