mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 14:53:33 +00:00
Hide biometric setting when running in Android (#1907)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user