mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix format
This commit is contained in:
parent
a7811f312c
commit
b017bdeed4
1 changed files with 1 additions and 4 deletions
|
|
@ -538,10 +538,7 @@ namespace Flow.Launcher.ViewModel
|
||||||
await Task.Yield();
|
await Task.Yield();
|
||||||
|
|
||||||
var results = await PluginManager.QueryForPlugin(plugin, query, currentCancellationToken);
|
var results = await PluginManager.QueryForPlugin(plugin, query, currentCancellationToken);
|
||||||
if (currentCancellationToken.IsCancellationRequested || results == null)
|
if (currentCancellationToken.IsCancellationRequested || results == null) return;
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!_resultsUpdateQueue.Writer.TryWrite(new ResultsForUpdate(results, plugin.Metadata, query, currentCancellationToken)))
|
if (!_resultsUpdateQueue.Writer.TryWrite(new ResultsForUpdate(results, plugin.Metadata, query, currentCancellationToken)))
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue