diff options
| author | AAGaming <aagaming@riseup.net> | 2024-10-03 17:08:35 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-03 17:08:35 -0400 |
| commit | 4cff530b525a20d8cff2a38568ea99d459126fdf (patch) | |
| tree | 28a6388845e78f109b3c4a04aaa8e8c2046c3b79 /frontend/src | |
| parent | 2f90a4fcf7af67f7ed5c044982779579d1624f69 (diff) | |
| download | decky-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.tsx | 5 |
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 { |
