From edb145091dd57fcf9d5394a51096ff46a6b972a3 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Sun, 6 Jul 2025 20:12:26 +0800 Subject: [PATCH] Fix build issue --- Flow.Launcher.Core/Plugin/PluginManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher.Core/Plugin/PluginManager.cs b/Flow.Launcher.Core/Plugin/PluginManager.cs index e2098a8aa..3860787f9 100644 --- a/Flow.Launcher.Core/Plugin/PluginManager.cs +++ b/Flow.Launcher.Core/Plugin/PluginManager.cs @@ -576,7 +576,7 @@ namespace Flow.Launcher.Core.Plugin var uninstallSuccess = await UninstallPluginAsync(existingVersion, removePluginFromSettings: false, removePluginSettings: false, checkModified: false); if (!uninstallSuccess) return false; - _modifiedPlugins.Add(existingVersion.ID); + ModifiedPlugins.Add(existingVersion.ID); return true; }