Rename variable

This commit is contained in:
Jack251970 2025-07-21 17:17:49 +08:00
parent 8d03fcee2e
commit 3bd76b2dfd

View file

@ -207,14 +207,14 @@ namespace Flow.Launcher
RegisterDispatcherUnhandledException(); RegisterDispatcherUnhandledException();
RegisterTaskSchedulerUnhandledException(); RegisterTaskSchedulerUnhandledException();
var imageLoadertask = ImageLoader.InitializeAsync(); var imageLoaderTask = ImageLoader.InitializeAsync();
Http.Proxy = _settings.Proxy; Http.Proxy = _settings.Proxy;
// Initialize plugin manifest before initializing plugins so that they can use the manifest instantly // Initialize plugin manifest before initializing plugins so that they can use the manifest instantly
await API.UpdatePluginManifestAsync(); await API.UpdatePluginManifestAsync();
await imageLoadertask; await imageLoaderTask;
_mainWindow = new MainWindow(); _mainWindow = new MainWindow();