1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 15:53:44 +00:00

Handle if GetState is null in biometric integrity check (#1082)

This commit is contained in:
Oscar Hinton
2020-09-21 18:34:22 +02:00
committed by GitHub
parent 0388738e02
commit a50e66faf4

View File

@@ -17,7 +17,10 @@ namespace Bit.iOS.Core.Services
public async Task<bool> SetupBiometricAsync()
{
var state = GetState();
await _storageService.SaveAsync("biometricState", ToBase64(state));
if (state != null)
{
await _storageService.SaveAsync("biometricState", ToBase64(state));
}
return true;
}
@@ -35,8 +38,12 @@ namespace Bit.iOS.Core.Services
else
{
var state = GetState();
if (state != null)
{
return FromBase64(oldState).Equals(state);
}
return FromBase64(oldState).Equals(state);
return true;
}
}