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 5da8259 commit c94a2f4Copy full SHA for c94a2f4
Plugins/Flow.Launcher.Plugin.PluginsManager/PluginsManager.cs
@@ -164,7 +164,7 @@ internal List<Result> RequestUpdate(string search)
164
from existingPlugin in Context.API.GetAllPlugins()
165
join pluginFromManifest in pluginsManifest.UserPlugins
166
on existingPlugin.Metadata.ID equals pluginFromManifest.ID
167
- where existingPlugin.Metadata.Version != pluginFromManifest.Version
+ where existingPlugin.Metadata.Version.CompareTo(pluginFromManifest.Version) > 0
168
select
169
new
170
{
0 commit comments