mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix build fail from task reindex run
This commit is contained in:
parent
820ae7d6e3
commit
9a2a88a703
1 changed files with 2 additions and 2 deletions
|
|
@ -111,9 +111,9 @@ namespace Wox.Plugin.Program
|
|||
|
||||
public static void IndexPrograms()
|
||||
{
|
||||
var t1 = Task.Run(IndexWin32Programs);
|
||||
var t1 = Task.Run(()=>IndexWin32Programs());
|
||||
|
||||
var t2 = Task.Run(IndexUWPPrograms);
|
||||
var t2 = Task.Run(()=>IndexUWPPrograms());
|
||||
|
||||
Task.WaitAll(t1, t2);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue