mirror of
https://github.com/Qortal/qortal.git
synced 2025-07-27 04:01:24 +00:00
Attempt to differentiate between resources that are downloading, and ones where downloading hasn't been attempted yet.
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user