mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
remove extra else
This commit is contained in:
parent
64f5181ae6
commit
9caa4d94bd
1 changed files with 2 additions and 2 deletions
|
|
@ -11,8 +11,8 @@ namespace Flow.Launcher.Plugin.BrowserBookmark.Commands
|
||||||
var match = StringMatcher.FuzzySearch(queryString, bookmark.Name);
|
var match = StringMatcher.FuzzySearch(queryString, bookmark.Name);
|
||||||
if (match.IsSearchPrecisionScoreMet())
|
if (match.IsSearchPrecisionScoreMet())
|
||||||
return match;
|
return match;
|
||||||
else
|
|
||||||
return StringMatcher.FuzzySearch(queryString, bookmark.Url);
|
return StringMatcher.FuzzySearch(queryString, bookmark.Url);
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static List<Bookmark> LoadAllBookmarks()
|
internal static List<Bookmark> LoadAllBookmarks()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue