summaryrefslogtreecommitdiff
path: root/frontend/src
diff options
context:
space:
mode:
authorAAGaming <aagaming@riseup.net>2024-10-03 17:08:35 -0400
committerGitHub <noreply@github.com>2024-10-03 17:08:35 -0400
commit4cff530b525a20d8cff2a38568ea99d459126fdf (patch)
tree28a6388845e78f109b3c4a04aaa8e8c2046c3b79 /frontend/src
parent2f90a4fcf7af67f7ed5c044982779579d1624f69 (diff)
downloaddecky-loader-4cff530b525a20d8cff2a38568ea99d459126fdf.tar.gz
decky-loader-4cff530b525a20d8cff2a38568ea99d459126fdf.zip
Fix missing components on Oct 2 2024 Steam Beta (#709)v3.0.2-pre1
Diffstat (limited to 'frontend/src')
-rw-r--r--frontend/src/plugin-loader.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/frontend/src/plugin-loader.tsx b/frontend/src/plugin-loader.tsx
index ab086b15..cb1bb270 100644
--- a/frontend/src/plugin-loader.tsx
+++ b/frontend/src/plugin-loader.tsx
@@ -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 {