diff --git a/src/Core/Services/Implementations/CipherService.cs b/src/Core/Services/Implementations/CipherService.cs index 87a64040f2..e858bb62ba 100644 --- a/src/Core/Services/Implementations/CipherService.cs +++ b/src/Core/Services/Implementations/CipherService.cs @@ -677,8 +677,7 @@ namespace Bit.Core.Services return; } - cipher.DeletedDate = DateTime.UtcNow; - cipher.RevisionDate = DateTime.UtcNow; + cipher.DeletedDate = cipher.RevisionDate = DateTime.UtcNow; await _cipherRepository.UpsertAsync(cipher); await _eventService.LogCipherEventAsync(cipher, EventType.Cipher_SoftDeleted);