mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Change variable name
This commit is contained in:
parent
55164ef60f
commit
cc68183940
1 changed files with 2 additions and 2 deletions
|
|
@ -236,7 +236,7 @@ namespace Flow.Launcher.Core.Plugin
|
|||
{
|
||||
var failedPlugins = new ConcurrentQueue<PluginPair>();
|
||||
|
||||
var InitTasks = allPlugins.Select(pair => Task.Run(async () =>
|
||||
var initTasks = allPlugins.Select(pair => Task.Run(async () =>
|
||||
{
|
||||
try
|
||||
{
|
||||
|
|
@ -286,7 +286,7 @@ namespace Flow.Launcher.Core.Plugin
|
|||
AddPluginToLists(pair);
|
||||
}));
|
||||
|
||||
await Task.WhenAll(InitTasks);
|
||||
await Task.WhenAll(initTasks);
|
||||
|
||||
if (!failedPlugins.IsEmpty)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue