Skip to content

Commit 09c7955

Browse files
authored
Merge pull request #80 from jjw24/fix_buildfail_task_reindex
Fix build fail from task reindex run
2 parents 820ae7d + 9a2a88a commit 09c7955

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Plugins/Wox.Plugin.Program/Main.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ public static void IndexUWPPrograms()
111111

112112
public static void IndexPrograms()
113113
{
114-
var t1 = Task.Run(IndexWin32Programs);
114+
var t1 = Task.Run(()=>IndexWin32Programs());
115115

116-
var t2 = Task.Run(IndexUWPPrograms);
116+
var t2 = Task.Run(()=>IndexUWPPrograms());
117117

118118
Task.WaitAll(t1, t2);
119119

0 commit comments

Comments
 (0)