From 01fc0c8d5bedcee0c96f8a9dcf4bc891375f4026 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Sun, 28 Jul 2024 18:55:12 -0400 Subject: [PATCH] increase the wait a bit --- frontend/src/plugin-loader.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/plugin-loader.tsx b/frontend/src/plugin-loader.tsx index 19aaec7f..eb30a2e0 100644 --- a/frontend/src/plugin-loader.tsx +++ b/frontend/src/plugin-loader.tsx @@ -166,7 +166,7 @@ class PluginLoader extends Logger { this.initPluginBackendAPI(); Promise.all([this.getUserInfo(), this.updateVersion()]) - .then(() => sleep(500)) + .then(() => sleep(800)) .then(() => this.loadPlugins()) .then(() => this.checkPluginUpdates()) .then(() => this.log('Initialized'));