Cleanup photos

pull/172/head
M66B 5 years ago
parent d66074790e
commit 0a1b1dc991

@ -184,6 +184,15 @@ public class WorkerCleanup extends Worker {
}
}
Log.i("Cleanup photos");
File[] photos = new File(context.getCacheDir(), "photo").listFiles();
if (photos != null)
for (File file : photos)
if (manual || file.lastModified() + KEEP_FILES_DURATION < now) {
if (!file.delete())
Log.w("Error deleting " + file);
}
Log.i("Cleanup contacts");
int contacts = db.contact().deleteContacts(now - KEEP_CONTACTS_DURATION);
Log.i("Deleted contacts=" + contacts);

Loading…
Cancel
Save