mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix typo
This commit is contained in:
parent
563ae0eeaf
commit
8392a025f3
1 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue