From e30f9903d13cfa60e6e29433e01d7695cb6897c5 Mon Sep 17 00:00:00 2001 From: mpbw2 <59324545+mpbw2@users.noreply.github.com> Date: Tue, 22 Aug 2023 15:51:11 -0400 Subject: [PATCH] fix for TDE pref naming collision (#2712) * fix for TDE pref naming collision * fix case --- src/Core/Constants.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Core/Constants.cs b/src/Core/Constants.cs index 7c4b686f7..c3e2add96 100644 --- a/src/Core/Constants.cs +++ b/src/Core/Constants.cs @@ -86,8 +86,8 @@ namespace Bit.Core public static string VaultTimeoutKey(string userId) => $"vaultTimeout_{userId}"; public static string VaultTimeoutActionKey(string userId) => $"vaultTimeoutAction_{userId}"; public static string MasterKeyEncryptedUserKeyKey(string userId) => $"masterKeyEncryptedUserKey_{userId}"; - public static string UserKeyAutoUnlockKey(string userId) => $"autoUnlock_{userId}"; - public static string UserKeyBiometricUnlockKey(string userId) => $"biometricUnlock_{userId}"; + public static string UserKeyAutoUnlockKey(string userId) => $"userKeyAutoUnlock_{userId}"; + public static string UserKeyBiometricUnlockKey(string userId) => $"userKeyBiometricUnlock_{userId}"; public static string CiphersKey(string userId) => $"ciphers_{userId}"; public static string FoldersKey(string userId) => $"folders_{userId}"; public static string CollectionsKey(string userId) => $"collections_{userId}";