We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce48958 commit 0f7bdeeCopy full SHA for 0f7bdee
Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs
@@ -258,7 +258,7 @@ private bool IsExcludedFile(SearchResult result)
258
string[] excludedFileTypes = Settings.ExcludedFileTypes.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
259
string fileExtension = Path.GetExtension(result.FullPath).TrimStart('.');
260
261
- return excludedFileTypes.Contains(fileExtension);
+ return excludedFileTypes.Contains(fileExtension, StringComparer.OrdinalIgnoreCase);
262
}
263
264
0 commit comments