From 7c802c96f2579cca02f67e875718ff09e3dac035 Mon Sep 17 00:00:00 2001 From: Hubert Bugaj Date: Mon, 2 Mar 2026 10:49:16 +0100 Subject: [PATCH] chore: fix wording in snapshot download --- src/daemon/mod.rs | 2 +- src/tool/offline_server/server.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/daemon/mod.rs b/src/daemon/mod.rs index 7ceb59a93788..d929473877cd 100644 --- a/src/daemon/mod.rs +++ b/src/daemon/mod.rs @@ -739,7 +739,7 @@ async fn maybe_set_snapshot_path( "Forest requires a snapshot to sync with the network, but automatic fetching is disabled." ); let message = format!( - "Fetch a {} snapshot to the current directory? (denying will exit the program). ", + "Fetch a {} snapshot? (denying will exit the program). ", indicatif::HumanBytes(num_bytes) ); let have_permission = asyncify(|| { diff --git a/src/tool/offline_server/server.rs b/src/tool/offline_server/server.rs index 849e70c19a21..84b6a110d877 100644 --- a/src/tool/offline_server/server.rs +++ b/src/tool/offline_server/server.rs @@ -282,7 +282,7 @@ async fn handle_snapshots( if !auto_download_snapshot { warn!("Automatic snapshot download is disabled."); let message = format!( - "Fetch a {} snapshot to the current directory? (denying will exit the program). ", + "Fetch a {} snapshot? (denying will exit the program). ", indicatif::HumanBytes(num_bytes) ); let have_permission =