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

Commit

Permalink
Merge pull request #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

2 comments on commit 09c7955

@HsunGong
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There exists a problem for program plugin searching strateges.
Using Windows Terminal (Preview) as an example.

I can not find it using query == term
image

I can find it using query == windows te

image

Or == winte with no space between win and term
image

That's wired.

@jjw24
Copy link
Owner Author

@jjw24 jjw24 commented on 09c7955 Dec 9, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@HsunGong This is an issue we definately need to look into. Maybe the precision score is too high or the search method is not capturing the intended result. Could you put this as an issue please.

Please sign in to comment.