Attempt to differentiate between resources that are downloading, and ones where downloading hasn't been attempted yet.

This commit is contained in:
CalDescent
2021-12-10 12:22:26 +00:00
parent e481a5926a
commit c7c88dec04
3 changed files with 43 additions and 1 deletions

View File

@@ -78,6 +78,10 @@
else if (json.status == "BUILD_FAILED") {
textStatus = "Build failed. Please try again later.";
}
else if (json.status == "NOT_STARTED") {
textStatus = "Waiting...";
retryInterval = 1000;
}
else if (json.status == "DOWNLOADING") {
textStatus = "Locating and downloading files...";
retryInterval = 1000;