From b4d748106363bfbf0edf5453f428888e53a11a20 Mon Sep 17 00:00:00 2001 From: Mark <> Date: Fri, 2 May 2025 10:27:46 +0200 Subject: [PATCH] fix: requery from more stations --- src/stations_thread.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stations_thread.rs b/src/stations_thread.rs index 0530e5a..fe511e7 100644 --- a/src/stations_thread.rs +++ b/src/stations_thread.rs @@ -43,7 +43,7 @@ pub fn spawn(stations: Arc, min_stations: usize) -> StationsThread } else { rand::thread_rng().gen_range(30..=120) })); - match stations.requery_random_station(10) { + match stations.requery_random_station(100) { Ok(()) => (), Err(e) => { eprintln!("Failed to requery stations:\n{e}");