From 13769a7fcba0d6ba67519b78e590019573776993 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 30 Jul 2018 22:01:21 -0400 Subject: [PATCH] dont use cipher revisionDate --- src/models/view/cipherView.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/view/cipherView.ts b/src/models/view/cipherView.ts index 6290993f590..c9ef1300480 100644 --- a/src/models/view/cipherView.ts +++ b/src/models/view/cipherView.ts @@ -88,6 +88,6 @@ export class CipherView implements View { } else if (this.login.password == null || this.login.password === '') { return null; } - return this.login.passwordRevisionDate != null ? this.login.passwordRevisionDate : this.revisionDate; + return this.login.passwordRevisionDate; } }