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 a3f7fcd commit b1655c7Copy full SHA for b1655c7
src/Files.App/Helpers/Application/AppLifecycleHelper.cs
@@ -116,7 +116,11 @@ await Task.WhenAll(
116
App.LibraryManager.UpdateLibrariesAsync(),
117
OptionalTaskAsync(WSLDistroManager.UpdateDrivesAsync(), generalSettingsService.ShowWslSection),
118
OptionalTaskAsync(App.FileTagsManager.UpdateFileTagsAsync(), generalSettingsService.ShowFileTagsSection),
119
- jumpListService.InitializeAsync(),
+ jumpListService.InitializeAsync()
120
+ );
121
+
122
+ //Start the tasks separately to reduce resource contention
123
+ await Task.WhenAll(
124
addItemService.InitializeAsync(),
125
ContextMenu.WarmUpQueryContextMenuAsync()
126
);
0 commit comments