Skip to content

Commit

Permalink
fix: fix time offset display in atuin status
Browse files Browse the repository at this point in the history
  • Loading branch information
Reverier-Xu committed Oct 25, 2024
1 parent 2e332c2 commit 13145eb
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 13145eb

Please sign in to comment.