Insure result is never in front of relevant results

This commit is contained in:
Garulf 2023-11-24 13:15:58 -05:00
parent 0e226d7a5b
commit f684883d72

View file

@ -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);
}