diff --git a/src/KeePassLib2Android/PwEntry.cs b/src/KeePassLib2Android/PwEntry.cs index 8e587b5a..b54e5d2f 100644 --- a/src/KeePassLib2Android/PwEntry.cs +++ b/src/KeePassLib2Android/PwEntry.cs @@ -383,6 +383,11 @@ namespace KeePassLib peNew.m_tExpire = m_tExpire; peNew.m_bExpires = m_bExpires; peNew.m_uUsageCount = m_uUsageCount; + + peNew.m_tCreationLazy = m_tCreationLazy; + peNew.m_tLastModLazy = m_tLastModLazy; + peNew.m_tLastAccessLazy = m_tLastAccessLazy; + peNew.m_tExpireLazy = m_tExpireLazy; peNew.m_strOverrideUrl = m_strOverrideUrl; diff --git a/src/KeePassLib2Android/PwGroup.cs b/src/KeePassLib2Android/PwGroup.cs index fa0e2802..c7070d82 100644 --- a/src/KeePassLib2Android/PwGroup.cs +++ b/src/KeePassLib2Android/PwGroup.cs @@ -396,6 +396,11 @@ namespace KeePassLib pg.m_bExpires = m_bExpires; pg.m_uUsageCount = m_uUsageCount; + pg.m_tCreationLazy = m_tCreationLazy; + pg.m_tLastModLazy = m_tLastModLazy; + pg.m_tLastAccessLazy = m_tLastAccessLazy; + pg.m_tExpireLazy = m_tExpireLazy; + pg.m_bIsExpanded = m_bIsExpanded; pg.m_bVirtual = m_bVirtual;