Skip to content

Commit f684883

Browse files
committed
Insure result is never in front of relevant results
1 parent 0e226d7 commit f684883

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Flow.Launcher.Core/Plugin/PluginManager.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,8 @@ public static async Task<List<Result>> QueryForPluginAsync(PluginPair pair, Quer
219219
ActionKeywordAssigned = query.ActionKeyword,
220220
PluginID = metadata.ID,
221221
OriginQuery = query,
222-
Action = _ => { throw new FlowPluginException(metadata, e);}
222+
Action = _ => { throw new FlowPluginException(metadata, e);},
223+
Score = -100
223224
};
224225
results.Add(r);
225226
}

0 commit comments

Comments
 (0)