diff --git a/Flow.Launcher.Core/Resource/DispatcherHelper.cs b/Flow.Launcher.Core/Resource/DispatcherHelper.cs index 70fb34f9c..8b2130351 100644 --- a/Flow.Launcher.Core/Resource/DispatcherHelper.cs +++ b/Flow.Launcher.Core/Resource/DispatcherHelper.cs @@ -95,7 +95,8 @@ public static class DispatcherHelper } else { - await await dispatcher.InvokeAsync(func, priority); + var task = await dispatcher.InvokeAsync(func, priority); + await task; } } }