From 460717541ca7f81278540219ac5b1d946b79ce79 Mon Sep 17 00:00:00 2001 From: Joshua Higgins Date: Wed, 16 Oct 2024 00:14:04 -0400 Subject: [PATCH] make it 1 second --- client/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/app.rs b/client/src/app.rs index b61490e..b6e6b72 100644 --- a/client/src/app.rs +++ b/client/src/app.rs @@ -624,7 +624,7 @@ impl eframe::App for RealmApp { Err(_) => break, } - sleep(Duration::from_millis(5000)).await; + sleep(Duration::from_millis(1000)).await; } }); self.polling_threads.push((server.server_id.clone(), handle));