From 8ef7f8435c253e0cf0d5fc7d5ae05cf0e6af089c Mon Sep 17 00:00:00 2001 From: EDIflyer Date: Sat, 6 Jan 2024 20:36:06 +0000 Subject: [PATCH] Update CipherService.cs Tweak based on further discussion --- 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 9916a77a9..b827162eb 100644 --- a/src/Core/Vault/Services/Implementations/CipherService.cs +++ b/src/Core/Vault/Services/Implementations/CipherService.cs @@ -1013,7 +1013,7 @@ public class CipherService : ICipherService if ((cipher.RevisionDate - lastKnownRevisionDate.Value).Duration() > TimeSpan.FromSeconds(1)) { throw new BadRequestException( - "Your vault is out of sync & changes could not be saved. Please logout & back in to your vault and try again." + "The item cannot be saved because it is out of date. To edit this item, first sync your vault, or log out and back in." ); } }