From 248213bf3eafdf53ac60b872aa1e454f334a288f Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Thu, 22 Feb 2024 19:02:02 +0000 Subject: fix: ensure sync time is saved for sync v2 (#1758) --- atuin/src/command/client/history.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/atuin/src/command/client/history.rs b/atuin/src/command/client/history.rs index 26ed7e37..af90e7bc 100644 --- a/atuin/src/command/client/history.rs +++ b/atuin/src/command/client/history.rs @@ -363,6 +363,7 @@ impl Cmd { { if settings.sync.records { let (_, downloaded) = record::sync::sync(settings, &store).await?; + Settings::save_sync_time()?; history_store.incremental_build(db, &downloaded).await?; } else { -- cgit v1.3.1