1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-08 03:23:50 +00:00

[PM-26340] Enable linux biometrics v2 (#16661)

This commit is contained in:
Bernd Schoolmann
2025-10-31 22:47:17 +01:00
committed by GitHub
parent b5a7379ea9
commit e68a471655
11 changed files with 262 additions and 1 deletions

View File

@@ -125,6 +125,11 @@ export class BiometricMessageHandlerService {
if (windowsV2Enabled) {
await this.biometricsService.enableWindowsV2Biometrics();
}
const linuxV2Enabled = await this.configService.getFeatureFlag(FeatureFlag.LinuxBiometricsV2);
if (linuxV2Enabled) {
await this.biometricsService.enableLinuxV2Biometrics();
}
}
async handleMessage(msg: LegacyMessageWrapper) {