fix: e2ee verification

This commit is contained in:
Timo Kösters
2021-06-30 20:31:51 +02:00
parent ac0027756e
commit 8c44312485
5 changed files with 12 additions and 8 deletions

View File

@@ -64,7 +64,7 @@ impl Tree for SledEngineTree {
backwards: bool,
) -> Box<dyn Iterator<Item = (Vec<u8>, Vec<u8>)> + Send> {
let iter = if backwards {
self.0.range(..from)
self.0.range(..=from)
} else {
self.0.range(from..)
};