From fb76e3f867ced5b835ac8bfee6e2a90dc513307d Mon Sep 17 00:00:00 2001 From: EDIflyer Date: Mon, 9 Feb 2026 15:38:10 +0000 Subject: [PATCH] [PM-5625] Update vault out of sync error message in CipherService.cs (#3652) * Update vault out of sync error message in CipherService.cs Co-authored-by: Jason Ng --- 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 140399a37a..3a970d82bd 100644 --- a/src/Core/Vault/Services/Implementations/CipherService.cs +++ b/src/Core/Vault/Services/Implementations/CipherService.cs @@ -875,7 +875,7 @@ public class CipherService : ICipherService if ((cipher.RevisionDate - lastKnownRevisionDate.Value).Duration() > TimeSpan.FromSeconds(1)) { throw new BadRequestException( - "The cipher you are updating is out of date. Please save your work, sync 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." ); } }