diff --git a/src/TwitchStreamingTools/Views/MainWindow.axaml.cs b/src/TwitchStreamingTools/Views/MainWindow.axaml.cs index c308354..f5fa8ea 100644 --- a/src/TwitchStreamingTools/Views/MainWindow.axaml.cs +++ b/src/TwitchStreamingTools/Views/MainWindow.axaml.cs @@ -56,7 +56,7 @@ protected override void OnInitialized() { // check for a new version of the application. Task.Factory.StartNew(async () => { GithubLatestReleaseJson? serverVersion = - await GitHubUpdateManager.GetLatestVersion("nullinside-development-group", "twitch-streaming-tools"); + await GitHubUpdateManager.GetLatestVersion("nullinside-development-group", "twitch-streaming-tools").ConfigureAwait(false); if (null == serverVersion || string.IsNullOrWhiteSpace(serverVersion.name)) { return; } @@ -82,7 +82,7 @@ protected override void OnInitialized() { DataContext = vm }; - await versionWindow.ShowDialog(this); + await versionWindow.ShowDialog(this).ConfigureAwait(false); } catch { // do nothing, don't crash diff --git a/src/nullinside-api b/src/nullinside-api index b075045..6962fe9 160000 --- a/src/nullinside-api +++ b/src/nullinside-api @@ -1 +1 @@ -Subproject commit b075045c23dc61736ab7f6bb721f7338eeb706f2 +Subproject commit 6962fe933e6bfffb71a91293c522214491392980