mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
spelling: attachments
This commit is contained in:
committed by
Janek Bevendorff
parent
40eafa8adc
commit
569ea3ebdd
@@ -449,7 +449,7 @@ void Entry::truncateHistory()
|
|||||||
int histMaxSize = db->metadata()->historyMaxSize();
|
int histMaxSize = db->metadata()->historyMaxSize();
|
||||||
if (histMaxSize > -1) {
|
if (histMaxSize > -1) {
|
||||||
int size = 0;
|
int size = 0;
|
||||||
QSet<QByteArray> foundAttachements = attachments()->values().toSet();
|
QSet<QByteArray> foundAttachments = attachments()->values().toSet();
|
||||||
|
|
||||||
QMutableListIterator<Entry*> i(m_history);
|
QMutableListIterator<Entry*> i(m_history);
|
||||||
i.toBack();
|
i.toBack();
|
||||||
@@ -460,11 +460,11 @@ void Entry::truncateHistory()
|
|||||||
if (size <= histMaxSize) {
|
if (size <= histMaxSize) {
|
||||||
size += historyItem->attributes()->attributesSize();
|
size += historyItem->attributes()->attributesSize();
|
||||||
|
|
||||||
const QSet<QByteArray> newAttachments = historyItem->attachments()->values().toSet() - foundAttachements;
|
const QSet<QByteArray> newAttachments = historyItem->attachments()->values().toSet() - foundAttachments;
|
||||||
for (const QByteArray& attachment : newAttachments) {
|
for (const QByteArray& attachment : newAttachments) {
|
||||||
size += attachment.size();
|
size += attachment.size();
|
||||||
}
|
}
|
||||||
foundAttachements += newAttachments;
|
foundAttachments += newAttachments;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (size > histMaxSize) {
|
if (size > histMaxSize) {
|
||||||
|
|||||||
Reference in New Issue
Block a user