From eeec8342ca53400a27165df9bff0f741bca248c4 Mon Sep 17 00:00:00 2001 From: jaasen-livefront Date: Mon, 15 Dec 2025 10:53:22 -0800 Subject: [PATCH] remove duplicate semicolon --- src/Core/Vault/Services/Implementations/CipherService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Vault/Services/Implementations/CipherService.cs b/src/Core/Vault/Services/Implementations/CipherService.cs index bcdbd4a11a..bb752b471f 100644 --- a/src/Core/Vault/Services/Implementations/CipherService.cs +++ b/src/Core/Vault/Services/Implementations/CipherService.cs @@ -1030,7 +1030,7 @@ public class CipherService : ICipherService var newCipherData = DeserializeCipherData(cipher); // For hidden-password users, never allow Key to change at all. - cipher.Key = existingCipher.Key; ; + cipher.Key = existingCipher.Key; // Keep only non-hidden fileds from the new cipher var nonHiddenFields = newCipherData.Fields?.Where(f => f.Type != FieldType.Hidden) ?? []; // Get hidden fields from the existing cipher