1
0
mirror of https://github.com/bitwarden/server synced 2026-02-12 06:23:28 +00:00

[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 <jcory.ng@gmail.com>
This commit is contained in:
EDIflyer
2026-02-09 15:38:10 +00:00
committed by GitHub
parent 70c01bcfb2
commit fb76e3f867

View File

@@ -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."
);
}
}