mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix logic inversion bug
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
This commit is contained in:
parent
88ac19af76
commit
f10f716619
1 changed files with 1 additions and 1 deletions
|
|
@ -380,7 +380,7 @@ namespace Flow.Launcher.Core.Plugin
|
||||||
if (query is null)
|
if (query is null)
|
||||||
return Array.Empty<PluginPair>();
|
return Array.Empty<PluginPair>();
|
||||||
|
|
||||||
if (TryGetNonGlobalPlugins(query.ActionKeyword, out var plugins))
|
if (!TryGetNonGlobalPlugins(query.ActionKeyword, out var plugins))
|
||||||
{
|
{
|
||||||
if (dialogJump)
|
if (dialogJump)
|
||||||
return [.. GetGlobalPlugins().Where(p => p.Plugin is IAsyncDialogJump && !PluginModified(p.Metadata.ID))];
|
return [.. GetGlobalPlugins().Where(p => p.Plugin is IAsyncDialogJump && !PluginModified(p.Metadata.ID))];
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue