Skip to content

Commit daedd10

Browse files
committed
Code Quality: Await CheckAppUpdate to fix release notes tab
1 parent 2a34261 commit daedd10

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Files.App/Helpers/Application/AppLifecycleHelper.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,14 @@ await Task.WhenAll(
119119
jumpListService.InitializeAsync(),
120120
addItemService.InitializeAsync(),
121121
ContextMenu.WarmUpQueryContextMenuAsync(),
122-
CheckAppUpdate()
123122
);
124123
});
125124

126125
FileTagsHelper.UpdateTagsDb();
127126

127+
// Release notes tab doesn't open unless this is awaited
128+
await CheckAppUpdate();
129+
128130
static Task OptionalTaskAsync(Task task, bool condition)
129131
{
130132
if (condition)

0 commit comments

Comments
 (0)