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; }