diff options
Diffstat (limited to 'frontend/src/plugin-loader.tsx')
| -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 { |
