Skip to content
This repository has been archived by the owner on Feb 12, 2021. It is now read-only.

Commit

Permalink
Fix build fail from task reindex run
Browse files Browse the repository at this point in the history
  • Loading branch information
jjw24 committed Nov 17, 2019
1 parent 820ae7d commit 9a2a88a
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 9a2a88a

Please sign in to comment.