diff --git a/locker_server/api_orm/repositories/cipher_repository.py b/locker_server/api_orm/repositories/cipher_repository.py index 9c5beb9..334322e 100644 --- a/locker_server/api_orm/repositories/cipher_repository.py +++ b/locker_server/api_orm/repositories/cipher_repository.py @@ -532,7 +532,7 @@ def update_cipher(self, cipher_id: str, cipher_data: Dict) -> Cipher: if cipher_orm.type == CIPHER_TYPE_LOGIN and \ cipher_orm.get_data().get("password") != new_data.get("password"): history_data = { - "last_use_date": cipher_orm.last_use_date, + "last_use_date": cipher_orm.last_use_date or now(), "reprompt": cipher_orm.reprompt, "score": cipher_orm.score, "data": cipher_orm.data,