Implement a first version of the snapshots

This commit is contained in:
Kerollmops 2022-10-25 14:09:01 +02:00 committed by Tamo
parent 43aa3ce1c7
commit 67566af599
5 changed files with 92 additions and 11 deletions

View file

@ -899,7 +899,7 @@ impl IndexScheduler {
pub(crate) fn delete_persisted_task_data(&self, task: &Task) -> Result<()> {
match task.content_uuid() {
Some(content_file) => self.delete_update_file(*content_file),
Some(content_file) => self.delete_update_file(content_file),
None => Ok(()),
}
}