mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Improve code quality
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
parent
a12645df30
commit
95fc3eb489
1 changed files with 2 additions and 1 deletions
|
|
@ -95,7 +95,8 @@ public static class DispatcherHelper
|
|||
}
|
||||
else
|
||||
{
|
||||
await await dispatcher.InvokeAsync(func, priority);
|
||||
var task = await dispatcher.InvokeAsync(func, priority);
|
||||
await task;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue