Browse Source

Fixed bug in loading screen, which prevented the DOWNLOADING status from showing.

block-minter-updates
CalDescent 3 years ago
parent
commit
5a8b895475
  1. 2
      src/main/resources/loading/index.html

2
src/main/resources/loading/index.html

@ -82,7 +82,7 @@
textStatus = status.description; textStatus = status.description;
retryInterval = 1000; retryInterval = 1000;
} }
else if (status.status == "DOWNLOADING") { else if (status.id == "DOWNLOADING") {
textStatus = status.description; textStatus = status.description;
retryInterval = 1000; retryInterval = 1000;
} }

Loading…
Cancel
Save