mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-19 06:53:26 +08:00
Merge pull request #80 from jjw24/fix_buildfail_task_reindex
Fix build fail from task reindex run
This commit is contained in:
commit
09c7955149
@ -111,9 +111,9 @@ namespace Wox.Plugin.Program
|
|||||||
|
|
||||||
public static void IndexPrograms()
|
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);
|
Task.WaitAll(t1, t2);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user