Skip to content

Commit

Permalink
Merge pull request microsoft#80 from jjw24/fix_buildfail_task_reindex
Browse files Browse the repository at this point in the history
Fix build fail from task reindex run
  • Loading branch information
jjw24 authored Nov 17, 2019
2 parents 820ae7d + 9a2a88a commit 09c7955
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Plugins/Wox.Plugin.Program/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ public static void IndexUWPPrograms()

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);

Expand Down

0 comments on commit 09c7955

Please # to comment.