Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/daemon/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(|| {
Expand Down
2 changes: 1 addition & 1 deletion src/tool/offline_server/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down
Loading