Fix crashes when loading the script.
This commit is contained in:
Jonathan Protzenko 2015-08-13 17:29:09 -07:00
Родитель de274f07bd
Коммит 08160236ab
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -1830,7 +1830,9 @@ module TDev
}
else
ProgressOverlay.hide();
Util.assert(this.isStopped())
// Someone else must've restarted the script.
if (!this.isStopped())
return;
// missing must be setup after the loading dialog is gone
this.host.initApiKeysAsync()
.then(() => this.host.agreeTermsOfUseAsync())