mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Write history only for entries that are not history items.
This commit is contained in:
parent
7063f5296a
commit
67bf8e7b2a
@ -362,7 +362,10 @@ void KeePass2XmlWriter::writeEntry(const Entry* entry)
|
||||
}
|
||||
|
||||
writeAutoType(entry);
|
||||
writeEntryHistory(entry);
|
||||
// write history only for entries that are not history items
|
||||
if (entry->parent()) {
|
||||
writeEntryHistory(entry);
|
||||
}
|
||||
|
||||
m_xml.writeEndElement();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user