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 d0743f6 commit c485578Copy full SHA for c485578
Plugins/Flow.Launcher.Plugin.PluginsManager/PluginsManager.cs
@@ -92,7 +92,7 @@ internal async Task InstallOrUpdate(UserPlugin plugin)
92
if (PluginExists(plugin.ID))
93
{
94
if (Context.API.GetAllPlugins()
95
- .Any(x => x.Metadata.ID == plugin.ID && x.Metadata.Version != plugin.Version))
+ .Any(x => x.Metadata.ID == plugin.ID && x.Metadata.Version.CompareTo(plugin.Version) < 0))
96
97
if (MessageBox.Show(Context.API.GetTranslation("plugin_pluginsmanager_update_exists"),
98
Context.API.GetTranslation("plugin_pluginsmanager_update_title"),
0 commit comments