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

This commit is contained in:
CalDescent 2022-02-01 22:03:17 +00:00
parent 6c9600cda0
commit 5a8b895475

View File

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