diff --git a/Plugins/Flow.Launcher.Plugin.Program/Main.cs b/Plugins/Flow.Launcher.Plugin.Program/Main.cs index 6786a2258..e8672e249 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Main.cs +++ b/Plugins/Flow.Launcher.Plugin.Program/Main.cs @@ -195,7 +195,7 @@ namespace Flow.Launcher.Plugin.Program _uwps.First(x => x.UniqueIdentifier == programToDelete.UniqueIdentifier) .Enabled = false; _settings.DisabledProgramSources.Add(new DisabledProgramSource(programToDelete)); - var t1 = Task.Run(() => + _ = Task.Run(() => { IndexUwpPrograms(); _settings.LastIndexTime = DateTime.Today; @@ -206,7 +206,7 @@ namespace Flow.Launcher.Plugin.Program _win32s.First(x => x.UniqueIdentifier == programToDelete.UniqueIdentifier) .Enabled = false; _settings.DisabledProgramSources.Add(new DisabledProgramSource(programToDelete)); - var t1 = Task.Run(() => + _ = Task.Run(() => { IndexWin32Programs(); _settings.LastIndexTime = DateTime.Today;