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 286ae93 commit 9257602Copy full SHA for 9257602
CompactGUI/Application.xaml.vb
@@ -101,8 +101,10 @@ Partial Public Class Application
101
102
Await _host.StartAsync()
103
Await SettingsViewModel.InitializeEnvironment()
104
- Await GetService(Of IUpdaterService).CheckForUpdate(SettingsHandler.AppSettings.EnablePreReleaseUpdates)
105
- Await GetService(Of IWikiService).GetUpdatedJSONAsync()
+
+ Dim UpdateTask = GetService(Of IUpdaterService).CheckForUpdate(SettingsHandler.AppSettings.EnablePreReleaseUpdates)
106
+ Dim WikiTask = GetService(Of IWikiService).GetUpdatedJSONAsync()
107
+ Await Task.WhenAll(UpdateTask, WikiTask)
108
109
End Sub
110
0 commit comments