mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Fix expires for new entry in DatabaseV1
This commit is contained in:
@@ -27,7 +27,8 @@ import org.joda.time.LocalDateTime
|
||||
/**
|
||||
* Abstract class who manage Groups and Entries
|
||||
*/
|
||||
abstract class PwNode<IdType, Parent : PwGroupInterface<Parent, Entry>, Entry : PwEntryInterface<Parent>> : PwNodeInterface<Parent>, Parcelable {
|
||||
abstract class PwNode<IdType, Parent : PwGroupInterface<Parent, Entry>, Entry : PwEntryInterface<Parent>>
|
||||
: PwNodeInterface<Parent>, NodeTimeInterface, Parcelable {
|
||||
|
||||
var nodeId: PwNodeId<IdType> = this.initNodeId()
|
||||
|
||||
@@ -88,7 +89,7 @@ abstract class PwNode<IdType, Parent : PwGroupInterface<Parent, Entry>, Entry :
|
||||
|
||||
final override var lastAccessTime: PwDate = PwDate()
|
||||
|
||||
final override var expiryTime: PwDate = PwDate()
|
||||
final override var expiryTime: PwDate = PwDate.NEVER_EXPIRE
|
||||
|
||||
final override val isCurrentlyExpires: Boolean
|
||||
get() = expires
|
||||
|
||||
Reference in New Issue
Block a user