Fix missing components on Oct 2 2024 Steam Beta (#709)

This commit is contained in:
AAGaming
2024-10-03 17:08:35 -04:00
committed by GitHub
parent 2f90a4fcf7
commit 4cff530b52
4 changed files with 12 additions and 11 deletions
+3 -2
View File
@@ -168,8 +168,9 @@ class PluginLoader extends Logger {
Promise.all([this.getUserInfo(), this.updateVersion()])
.then(() => this.loadPlugins())
.then(() => this.checkPluginUpdates())
.then(() => this.log('Initialized'));
.then(() => this.log('Initialized'))
.then(() => sleep(30000)) // Internet might not immediately be up
.then(() => this.checkPluginUpdates());
}
private checkForSP(): boolean {