From 3d62f404db280032efd38675d52144e9bf6edf54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=E2=96=88=E2=96=88=E2=96=88=E2=96=88=E2=96=88?= Date: Tue, 22 Jul 2025 23:17:27 -0400 Subject: [PATCH] chore: configureawait --- src/TwitchStreamingTools/Views/MainWindow.axaml.cs | 4 ++-- src/nullinside-api | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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