Fix history truncation based on max size and extend unit tests

This commit is contained in:
Janek Bevendorff 2018-01-23 02:31:29 +01:00
parent 258438f01f
commit 8dd6cdeb69
No known key found for this signature in database
GPG key ID: 2FDEB0D40BCA5E11
5 changed files with 147 additions and 84 deletions

View file

@ -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();