From 3cdfa4e276d744fe13cdee5bedee633ff3245160 Mon Sep 17 00:00:00 2001 From: CalDescent Date: Sat, 28 Jan 2023 18:03:00 +0000 Subject: [PATCH] Increased loading screen refresh interval from 1s to 2s. --- src/main/resources/loading/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/loading/index.html b/src/main/resources/loading/index.html index 4ed16b53..574645cc 100644 --- a/src/main/resources/loading/index.html +++ b/src/main/resources/loading/index.html @@ -75,18 +75,18 @@ } else if (status.id == "BUILDING") { textStatus = status.description; - retryInterval = 1000; + retryInterval = 2000; } else if (status.id == "BUILD_FAILED") { textStatus = status.description; } else if (status.id == "NOT_STARTED") { textStatus = status.description; - retryInterval = 1000; + retryInterval = 2000; } else if (status.id == "DOWNLOADING") { textStatus = status.description; - retryInterval = 1000; + retryInterval = 2000; } else if (status.id == "MISSING_DATA") { textStatus = status.description;