mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Insure result is never in front of relevant results
This commit is contained in:
parent
0e226d7a5b
commit
f684883d72
1 changed files with 2 additions and 1 deletions
|
|
@ -219,7 +219,8 @@ namespace Flow.Launcher.Core.Plugin
|
|||
ActionKeywordAssigned = query.ActionKeyword,
|
||||
PluginID = metadata.ID,
|
||||
OriginQuery = query,
|
||||
Action = _ => { throw new FlowPluginException(metadata, e);}
|
||||
Action = _ => { throw new FlowPluginException(metadata, e);},
|
||||
Score = -100
|
||||
};
|
||||
results.Add(r);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue