From 5a8b89547578aaf964505adb9e9e279364159767 Mon Sep 17 00:00:00 2001 From: CalDescent Date: Tue, 1 Feb 2022 22:03:17 +0000 Subject: [PATCH] Fixed bug in loading screen, which prevented the DOWNLOADING status from showing. --- src/main/resources/loading/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/loading/index.html b/src/main/resources/loading/index.html index 6f234c45..807fa17f 100644 --- a/src/main/resources/loading/index.html +++ b/src/main/resources/loading/index.html @@ -82,7 +82,7 @@ textStatus = status.description; retryInterval = 1000; } - else if (status.status == "DOWNLOADING") { + else if (status.id == "DOWNLOADING") { textStatus = status.description; retryInterval = 1000; }