diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2026-02-16 10:57:39 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2026-02-16 10:57:39 +0000 |
| commit | 1d08d2e77dec6dc2c5a8df8776b74f4ba5405e8d (patch) | |
| tree | 5b0c3f82d23616bab6eb01b8f3427acb19e5005c /src/lib/client.rs | |
| parent | 504d3632900decb82cbe9280b7aeca5fcd4a51e3 (diff) | |
fix: report wording `fetching` ~> `checking`
to be consistent with the summary version
Diffstat (limited to 'src/lib/client.rs')
| -rw-r--r-- | src/lib/client.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/client.rs b/src/lib/client.rs index 580db5c..6f817d5 100644 --- a/src/lib/client.rs +++ b/src/lib/client.rs | |||
| @@ -493,7 +493,7 @@ impl Connect for Client { | |||
| 493 | // Finish the pre-added heading bar now that the draw target | 493 | // Finish the pre-added heading bar now that the draw target |
| 494 | // is visible so indicatif actually renders it. | 494 | // is visible so indicatif actually renders it. |
| 495 | if let Some(heading) = heading_bar_for_timer { | 495 | if let Some(heading) = heading_bar_for_timer { |
| 496 | heading.finish_with_message("fetching updates..."); | 496 | heading.finish_with_message("Checking nostr relays..."); |
| 497 | } | 497 | } |
| 498 | // Mark as revealed and flush all bars that finished while | 498 | // Mark as revealed and flush all bars that finished while |
| 499 | // the draw target was hidden. Hold the lock across the flag | 499 | // the draw target was hidden. Hold the lock across the flag |
| @@ -2239,7 +2239,7 @@ pub async fn fetching_with_report( | |||
| 2239 | let verbose = is_verbose(); | 2239 | let verbose = is_verbose(); |
| 2240 | if verbose { | 2240 | if verbose { |
| 2241 | let term = console::Term::stderr(); | 2241 | let term = console::Term::stderr(); |
| 2242 | term.write_line("fetching updates...")?; | 2242 | term.write_line("Checking nostr relays...")?; |
| 2243 | } | 2243 | } |
| 2244 | let (relay_reports, progress_reporter) = client | 2244 | let (relay_reports, progress_reporter) = client |
| 2245 | .fetch_all( | 2245 | .fetch_all( |