Skip to content

Commit

Permalink
fix: time offset display in atuin status (#2433)
Browse files Browse the repository at this point in the history
  • Loading branch information
Reverier-Xu authored Nov 9, 2024
1 parent cc6f57d commit d7f351e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/atuin/src/command/client/sync/status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub async fn run(settings: &Settings, db: &impl Database) -> Result<()> {

if settings.auto_sync {
println!("Sync frequency: {}", settings.sync_frequency);
println!("Last sync: {last_sync}");
println!("Last sync: {}", last_sync.to_offset(settings.timezone.0));
}

if !settings.sync.records {
Expand Down

0 comments on commit d7f351e

Please sign in to comment.