This commit is contained in:
Jeremy Wu 2025-09-02 22:46:37 +10:00 committed by GitHub
parent 563ae0eeaf
commit 8392a025f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -45,16 +45,16 @@ namespace Flow.Launcher.Core.ExternalPlugins
lastFetchedAt = DateTime.Now;
var updatedPluginResult = new List<UserPlugin>();
var updatedPluginResults = new List<UserPlugin>();
var appVersion = SemanticVersioning.Version.Parse(Constant.Version);
for (int i = 0; i < results.Count; i++)
{
if (IsMinimumAppVersionSatisfied(results[i], appVersion))
updatedPluginResult.Add(results[i]);
updatedPluginResults.Add(results[i]);
}
UserPlugins = updatedPluginResult;
UserPlugins = updatedPluginResults;
return true;
}