We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa834da commit b1ff3c3Copy full SHA for b1ff3c3
1 file changed
app/elements/util/splash-screen/splash-screen.ts
@@ -90,10 +90,13 @@ namespace SplashScreenElement {
90
const progress = Math.round((registered / this._settings.max) * 100) / 100;
91
this.setProgress(progress);
92
93
- if (registered >= this._settings.max) {
94
- this.async(() => {
95
- this.finish();
96
- resolve(null);
+ if (registered >= this._settings.max && !this.finished) {
+ this.async(async () => {
+ await window.__.ready;
+ this.async(() => {
97
+ this.finish();
98
+ resolve(null);
99
+ }, 250);
100
}, 500);
101
}
102
0 commit comments