Saving DB should clear the modified flag

This commit is contained in:
Ajeet D'Souza 2020-04-05 21:39:21 +05:30
parent bf76a4e9c1
commit 2f73465d8d

View File

@ -93,6 +93,8 @@ impl DB {
.context("could not move or delete temporary database file")?;
return Err(e).context("could not move temporary database file");
}
self.modified = false;
}
Ok(())