Skip to content

Commit

Permalink
Merge pull request #2533 from Flow-Launcher/fix-windows-index
Browse files Browse the repository at this point in the history
Fix: Explorer plugin's Windows Index search returning no results
  • Loading branch information
Garulf authored Feb 5, 2024
2 parents 694e504 + ca6a6dc commit 6bd1da7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ internal static class WindowsIndex
{

// Reserved keywords in oleDB
private static Regex _reservedPatternMatcher = new(@"[`\@\@\#\#\*\^,\&\&\/\\\$\%_;\[\]]+", RegexOptions.Compiled);
private static Regex _reservedPatternMatcher = new(@"^[`\@\@\#\#\*\^,\&\&\/\\\$\%_;\[\]]+$", RegexOptions.Compiled);

private static async IAsyncEnumerable<SearchResult> ExecuteWindowsIndexSearchAsync(string indexQueryString, string connectionString, [EnumeratorCancellation] CancellationToken token)
{
Expand Down

0 comments on commit 6bd1da7

Please sign in to comment.