We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4749ca2 commit 2ff09cfCopy full SHA for 2ff09cf
Plugins/Flow.Launcher.Plugin.Program/Main.cs
@@ -413,10 +413,7 @@ private static async Task DisableProgramAsync(IProgram programToDelete)
413
_uwpsLock.Release();
414
415
// Reindex UWP programs
416
- _ = Task.Run(() =>
417
- {
418
- _ = IndexUwpProgramsAsync();
419
- });
+ _ = Task.Run(IndexUwpProgramsAsync);
420
return;
421
}
422
else
@@ -433,10 +430,8 @@ private static async Task DisableProgramAsync(IProgram programToDelete)
433
430
_win32sLock.Release();
434
431
435
432
// Reindex Win32 programs
436
437
438
- _ = IndexWin32ProgramsAsync();
439
+ _ = Task.Run(IndexWin32ProgramsAsync);
+ return;
440
441
442
{
0 commit comments