Skip to content

Commit 71cf2e2

Browse files
committed
Merge branch 'ProgramPluginImprovement' of github.com:taooceros/Flow.Launcher into ProgramPluginImprovement
2 parents 8be2cf1 + ca264c3 commit 71cf2e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Plugins/Flow.Launcher.Plugin.Program/Programs/UWP.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ public Result Result(string query, IPublicAPI api)
277277
_ => Name
278278
};
279279

280-
var matchResult = StringMatcher.FuzzySearch(query, title);
280+
var matchResult = StringMatcher.FuzzySearch(query, Name);
281281

282282
if (!matchResult.Success)
283283
return null;

Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public Result Result(string query, IPublicAPI api)
4545
_ => Name
4646
};
4747

48-
var matchResult = StringMatcher.FuzzySearch(query, title);
48+
var matchResult = StringMatcher.FuzzySearch(query, Name);
4949

5050
if (!matchResult.Success)
5151
return null;

0 commit comments

Comments
 (0)