From 052bbb9d75891c4e9c7907deb3d5704c800aa1a8 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Sun, 6 Jul 2025 16:49:17 +0800 Subject: [PATCH] Fix format --- Flow.Launcher.Core/Plugin/PluginManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher.Core/Plugin/PluginManager.cs b/Flow.Launcher.Core/Plugin/PluginManager.cs index a3e451b62..1d9425232 100644 --- a/Flow.Launcher.Core/Plugin/PluginManager.cs +++ b/Flow.Launcher.Core/Plugin/PluginManager.cs @@ -556,10 +556,10 @@ namespace Flow.Launcher.Core.Plugin return false; } - var installSuccess = InstallPlugin(newVersion, zipFilePath, checkModified:false); + var installSuccess = InstallPlugin(newVersion, zipFilePath, checkModified: false); if (!installSuccess) return false; - var uninstallSuccess = await UninstallPluginAsync(existingVersion, removePluginFromSettings:false, removePluginSettings:false, checkModified: false); + var uninstallSuccess = await UninstallPluginAsync(existingVersion, removePluginFromSettings: false, removePluginSettings: false, checkModified: false); if (!uninstallSuccess) return false; _modifiedPlugins.Add(existingVersion.ID);