Skip to content

Commit 1e81c4c

Browse files
authored
Fix AppCenter not called (#6601)
1 parent e0f1d3c commit 1e81c4c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Files/App.xaml.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ private static async Task EnsureSettingsAndConfigurationAreBootstrapped()
140140
TerminalController ??= new TerminalController();
141141
}
142142

143-
private static async void StartAppCenter()
143+
private static async Task StartAppCenter()
144144
{
145145
try
146146
{
@@ -161,6 +161,7 @@ private static async void StartAppCenter()
161161
public static async Task LoadOtherStuffAsync()
162162
{
163163
// Start off a list of tasks we need to run before we can continue startup
164+
await StartAppCenter();
164165
await Task.Run(async () =>
165166
{
166167
await Task.WhenAll(

0 commit comments

Comments
 (0)