summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/weather_poller.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/weather_poller.rs b/src/weather_poller.rs
index 76f3fda..8383d55 100644
--- a/src/weather_poller.rs
+++ b/src/weather_poller.rs
@@ -354,7 +354,7 @@ impl WeatherScheduler {
}
// Wait for 1 hour before next check
- sleep(Duration::from_secs(3600)).await;
+ sleep(Duration::from_secs(60 * 60)).await;
}
}
}