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 a1a45a4 commit f9349a6Copy full SHA for f9349a6
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.CompareTo(pluginFromManifest.Version) > 0
+ where existingPlugin.Metadata.Version.CompareTo(pluginFromManifest.Version) < 0 // if current version precedes manifest version
168
select
169
new
170
{
0 commit comments