We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf056a9 commit 2e2d259Copy full SHA for 2e2d259
Plugins/Flow.Launcher.Plugin.PluginsManager/PluginsManager.cs
@@ -104,7 +104,7 @@ internal List<Result> GetDefaultHotKeys()
104
105
internal async Task InstallOrUpdate(UserPlugin plugin)
106
{
107
- if (PluginExists(plugin.ID))
+ if (PluginExists(plugin.ID) || Directory.Exists(Path.Combine(DataLocation.PluginsDirectory, plugin.Name)))
108
109
if (Context.API.GetAllPlugins()
110
.Any(x => x.Metadata.ID == plugin.ID && x.Metadata.Version.CompareTo(plugin.Version) < 0))
0 commit comments