diff --git a/Flow.Launcher.Core/Plugin/PluginManager.cs b/Flow.Launcher.Core/Plugin/PluginManager.cs index 635690ce2..4e2ed0762 100644 --- a/Flow.Launcher.Core/Plugin/PluginManager.cs +++ b/Flow.Launcher.Core/Plugin/PluginManager.cs @@ -707,6 +707,8 @@ namespace Flow.Launcher.Core.Plugin public static bool PluginModified(string id) { + // We should consider initializing plugin as modified since it cannot be installed/uninstalled/updated and + // we cannot call any plugin methods return ModifiedPlugins.Contains(id) && _allInitializedPlugins.ContainsKey(id); }