Skip to content

Commit 8392a02

Browse files
authored
fix typo
1 parent 563ae0e commit 8392a02

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Flow.Launcher.Core/ExternalPlugins/PluginsManifest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,16 @@ public static async Task<bool> UpdateManifestAsync(bool usePrimaryUrlOnly = fals
4545

4646
lastFetchedAt = DateTime.Now;
4747

48-
var updatedPluginResult = new List<UserPlugin>();
48+
var updatedPluginResults = new List<UserPlugin>();
4949
var appVersion = SemanticVersioning.Version.Parse(Constant.Version);
5050

5151
for (int i = 0; i < results.Count; i++)
5252
{
5353
if (IsMinimumAppVersionSatisfied(results[i], appVersion))
54-
updatedPluginResult.Add(results[i]);
54+
updatedPluginResults.Add(results[i]);
5555
}
5656

57-
UserPlugins = updatedPluginResult;
57+
UserPlugins = updatedPluginResults;
5858

5959
return true;
6060
}

0 commit comments

Comments
 (0)