mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 18:56:55 +02:00
Fix first progress message box not closing
This commit is contained in:
parent
632989e031
commit
ad5822d96d
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ function onWebEventReceived(message) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (message.slice(0, CLARA_IO_DOWNLOAD.length) === CLARA_IO_DOWNLOAD) {
|
if (message.slice(0, CLARA_IO_DOWNLOAD.length) === CLARA_IO_DOWNLOAD) {
|
||||||
if (messageBox) {
|
if (messageBox !== null) {
|
||||||
Window.closeMessageBox(messageBox);
|
Window.closeMessageBox(messageBox);
|
||||||
messageBox = null;
|
messageBox = null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue