From 4cff530b525a20d8cff2a38568ea99d459126fdf Mon Sep 17 00:00:00 2001 From: AAGaming Date: Thu, 3 Oct 2024 17:08:35 -0400 Subject: Fix missing components on Oct 2 2024 Steam Beta (#709) --- frontend/src/plugin-loader.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'frontend/src/plugin-loader.tsx') 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 { -- cgit v1.2.3