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 563ae0e commit 8392a02Copy full SHA for 8392a02
Flow.Launcher.Core/ExternalPlugins/PluginsManifest.cs
@@ -45,16 +45,16 @@ public static async Task<bool> UpdateManifestAsync(bool usePrimaryUrlOnly = fals
45
46
lastFetchedAt = DateTime.Now;
47
48
- var updatedPluginResult = new List<UserPlugin>();
+ var updatedPluginResults = new List<UserPlugin>();
49
var appVersion = SemanticVersioning.Version.Parse(Constant.Version);
50
51
for (int i = 0; i < results.Count; i++)
52
{
53
if (IsMinimumAppVersionSatisfied(results[i], appVersion))
54
- updatedPluginResult.Add(results[i]);
+ updatedPluginResults.Add(results[i]);
55
}
56
57
- UserPlugins = updatedPluginResult;
+ UserPlugins = updatedPluginResults;
58
59
return true;
60
0 commit comments