From c595b1626ed7bc1f646999d298417b6e4a1797b6 Mon Sep 17 00:00:00 2001 From: Jacob Fink Date: Thu, 3 Aug 2023 14:34:50 -0400 Subject: [PATCH] fix formatting --- src/Core/Services/CryptoService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);