From 4930f050c56660c245e5976979babb66aea7bfd5 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Mon, 20 Jul 2026 23:44:15 +0200 Subject: chore: Last big refactoring --- crates/daemon/src/api/history.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'crates/daemon/src/api/history.rs') 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() -- cgit v1.3.1