1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

fix formatting

This commit is contained in:
Jacob Fink
2023-08-03 14:34:50 -04:00
parent 270a395d9f
commit c595b1626e

View File

@@ -107,9 +107,9 @@ namespace Bit.Core.Services
public async Task<bool> HasAutoUnlockKeyAsync(string userId = null)
{
return (await GetAutoUnlockKeyAsync(userId) != null);
return await GetAutoUnlockKeyAsync(userId) != null;
}
public Task SetMasterKeyAsync(MasterKey masterKey, string userId = null)
{
return _stateService.SetMasterKeyAsync(masterKey, userId);