mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix build issue
This commit is contained in:
parent
1e0118604c
commit
dc92f6a271
1 changed files with 2 additions and 2 deletions
|
|
@ -1147,7 +1147,7 @@ namespace Flow.Launcher.ViewModel
|
|||
var searchDelayValue = searchDelay.Value;
|
||||
tasks = plugins.Select(plugin => (plugin.Metadata.Disabled || plugin.Metadata.SearchDelay != searchDelayValue) switch
|
||||
{
|
||||
false => QueryTask(plugin, reSelect),
|
||||
false => QueryTaskAsync(plugin, reSelect),
|
||||
true => Task.CompletedTask
|
||||
}).ToArray();
|
||||
|
||||
|
|
@ -1166,7 +1166,7 @@ namespace Flow.Launcher.ViewModel
|
|||
{
|
||||
tasks = plugins.Select(plugin => plugin.Metadata.Disabled switch
|
||||
{
|
||||
false => QueryTask(plugin, reSelect),
|
||||
false => QueryTaskAsync(plugin, reSelect),
|
||||
true => Task.CompletedTask
|
||||
}).ToArray();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue