From 6cb3034215096653992d117de264cb7367256287 Mon Sep 17 00:00:00 2001 From: bytedream Date: Sat, 27 Dec 2025 18:29:09 +0100 Subject: [PATCH] fix live stats interval --- src/app/website/index/liveStats.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/website/index/liveStats.ts b/src/app/website/index/liveStats.ts index c3fa7c5..3efa370 100644 --- a/src/app/website/index/liveStats.ts +++ b/src/app/website/index/liveStats.ts @@ -9,7 +9,7 @@ if (STATISTICS_ENDPOINT) { fetchStatistics() .catch((_) => null) .then((val) => (statistics = val)), - STATISTICS_INTERVAL * 60 * 1000 + STATISTICS_INTERVAL * 1000 ); }