aboutsummaryrefslogtreecommitdiffstats
path: root/crates/daemon/src/api/history.rs
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-20 23:44:15 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-20 23:44:15 +0200
commit4930f050c56660c245e5976979babb66aea7bfd5 (patch)
tree1a0cc823da65c4258f4434be98e92f814ae4fce2 /crates/daemon/src/api/history.rs
parentchore: Commit (diff)
downloadatuin-4930f050c56660c245e5976979babb66aea7bfd5.zip
chore: Last big refactoring
Diffstat (limited to 'crates/daemon/src/api/history.rs')
-rw-r--r--crates/daemon/src/api/history.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/crates/daemon/src/api/history.rs b/crates/daemon/src/api/history.rs
index d024ea92..6165464d 100644
--- a/crates/daemon/src/api/history.rs
+++ b/crates/daemon/src/api/history.rs
@@ -90,10 +90,7 @@ impl HistorySvc for HistoryService {
self.handle.history_db().range(from, to).await
} else {
- self.handle
- .history_db()
- .list(None, None, false, false)
- .await
+ self.handle.history_db().list(None, false, false).await
}
.map_err(|e| Status::internal(format!("failed to read db: {e:?}")))?
.into_iter()