1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-14 15:23:35 +00:00

[PM-2713] rename state methods

This commit is contained in:
Jacob Fink
2023-08-01 08:46:02 -04:00
parent 3e87d74061
commit 61aac20555
6 changed files with 37 additions and 37 deletions

View File

@@ -446,11 +446,11 @@ namespace Bit.App.Pages
if (masterPassOnRestart)
{
await _stateService.SetUserKeyPinEphemeralAsync(protectedPinKey);
await _stateService.SetPinKeyEncryptedUserKeyEphemeralAsync(protectedPinKey);
}
else
{
await _stateService.SetUserKeyPinAsync(protectedPinKey);
await _stateService.SetPinKeyEncryptedUserKeyAsync(protectedPinKey);
}
}
else