diff --git a/src/Core/Services/CryptoService.cs b/src/Core/Services/CryptoService.cs index 2b61f9e67..a5971a1ac 100644 --- a/src/Core/Services/CryptoService.cs +++ b/src/Core/Services/CryptoService.cs @@ -107,9 +107,9 @@ namespace Bit.Core.Services public async Task 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);