From 26aeed692c3c8af5b30ef2e52f77fa4c4c63ad71 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Mon, 2 Jun 2025 15:07:15 +0200 Subject: [PATCH] Improved start-up behavior --- .../Tools/PluginSystem/PluginFactory.Download.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/MindWork AI Studio/Tools/PluginSystem/PluginFactory.Download.cs b/app/MindWork AI Studio/Tools/PluginSystem/PluginFactory.Download.cs index 30482b6e..398a10b3 100644 --- a/app/MindWork AI Studio/Tools/PluginSystem/PluginFactory.Download.cs +++ b/app/MindWork AI Studio/Tools/PluginSystem/PluginFactory.Download.cs @@ -6,9 +6,6 @@ public static partial class PluginFactory { public static async Task TryDownloadingConfigPluginAsync(Guid configPlugId, string configServerUrl, CancellationToken cancellationToken = default) { - if (!IS_INITIALIZED) - return false; - LOG.LogInformation($"Downloading configuration plugin with ID: {configPlugId} from server: {configServerUrl}"); var tempDownloadFile = Path.GetTempFileName(); try