Refactoring

This commit is contained in:
M66B 2020-04-15 14:14:26 +02:00
parent c3349f0665
commit 9516ac228a
1 changed files with 7 additions and 6 deletions

View File

@ -93,12 +93,6 @@ public class WorkerCleanup extends Worker {
}
}
if (cleanup_attachments) {
int purged = db.attachment().purge(
new Date().getTime(), BuildConfig.DEBUG);
Log.i("Attachments purged=" + purged);
}
// Check attachments files
Log.i("Checking attachments files");
List<Long> aids = db.attachment().getAttachmentAvailable();
@ -113,6 +107,13 @@ public class WorkerCleanup extends Worker {
}
}
// Delete old attachments
if (cleanup_attachments) {
int purged = db.attachment().purge(
new Date().getTime(), BuildConfig.DEBUG);
Log.i("Attachments purged=" + purged);
}
// Clear raw headers
int headers = db.message().clearMessageHeaders();
Log.i("Cleared message headers=" + headers);