mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 14:07:38 +03:00
Fix history truncation based on max size and extend unit tests
This commit is contained in:
parent
258438f01f
commit
8dd6cdeb69
5 changed files with 147 additions and 84 deletions
|
@ -594,7 +594,7 @@ void Entry::truncateHistory()
|
|||
if (size <= histMaxSize) {
|
||||
size += historyItem->attributes()->attributesSize();
|
||||
size += historyItem->autoTypeAssociations()->associationsSize();
|
||||
size += historyItem->attachments()->attachmentsSize(foundAttachments);
|
||||
size += historyItem->attachments()->attachmentsSize();
|
||||
const QStringList tags = historyItem->tags().split(delimiter, QString::SkipEmptyParts);
|
||||
for (const QString& tag : tags) {
|
||||
size += tag.toUtf8().size();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue