3
0
mirror of https://github.com/Qortal/qortal.git synced 2025-02-12 10:15:49 +00:00

Increased loading screen refresh interval from 1s to 2s.

This commit is contained in:
CalDescent 2023-01-28 18:03:00 +00:00
parent 380ba5b8c2
commit 3cdfa4e276

View File

@ -75,18 +75,18 @@
} }
else if (status.id == "BUILDING") { else if (status.id == "BUILDING") {
textStatus = status.description; textStatus = status.description;
retryInterval = 1000; retryInterval = 2000;
} }
else if (status.id == "BUILD_FAILED") { else if (status.id == "BUILD_FAILED") {
textStatus = status.description; textStatus = status.description;
} }
else if (status.id == "NOT_STARTED") { else if (status.id == "NOT_STARTED") {
textStatus = status.description; textStatus = status.description;
retryInterval = 1000; retryInterval = 2000;
} }
else if (status.id == "DOWNLOADING") { else if (status.id == "DOWNLOADING") {
textStatus = status.description; textStatus = status.description;
retryInterval = 1000; retryInterval = 2000;
} }
else if (status.id == "MISSING_DATA") { else if (status.id == "MISSING_DATA") {
textStatus = status.description; textStatus = status.description;