mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
merge PR #120: update Web Search plugin
do not activate if query is a directory/network path
This commit is contained in:
commit
0929d34b38
1 changed files with 3 additions and 0 deletions
|
|
@ -33,6 +33,9 @@ namespace Flow.Launcher.Plugin.WebSearch
|
|||
|
||||
public List<Result> Query(Query query)
|
||||
{
|
||||
if (FilesFolders.IsLocationPathString(query.Search))
|
||||
return new List<Result>();
|
||||
|
||||
var searchSourceList = new List<SearchSource>();
|
||||
var results = new List<Result>();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue