From 966a80c4199a49898cc7d8641012d520ce6b2efa Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Mon, 20 Jul 2026 19:30:40 +0200 Subject: chore: Commit --- crates/client/src/command/client/history/start.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'crates/client/src/command') diff --git a/crates/client/src/command/client/history/start.rs b/crates/client/src/command/client/history/start.rs index 81aaa904..defd46a3 100644 --- a/crates/client/src/command/client/history/start.rs +++ b/crates/client/src/command/client/history/start.rs @@ -6,9 +6,10 @@ use crate::{ use eyre::{Result, eyre}; use time::OffsetDateTime; use tracing::debug; +use turtle::History; use turtle_common::utils; use turtle_daemon::{ - aclient::history::{History, SettingsFilter}, + aclient::history::SettingsFilter, api::client::{HistoryClient, daemon_matches_expected, daemon_mismatch_message}, }; @@ -23,7 +24,7 @@ pub(super) async fn handle( let cwd = utils::get_current_dir(); let command = normalize_command_for_storage(command, settings); - let mut h: History = History::capture() + let mut h: History = History::daemon() .timestamp(OffsetDateTime::now_utc()) .command(command) .cwd(cwd) -- cgit v1.3.1