From caaa00f11627b6f1d445cc789dc2487931591a39 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sun, 22 Jan 2023 21:04:48 +0100 Subject: [PATCH] Fixed missed awaiting of import process --- I18N Commander/UI WinForms/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/I18N Commander/UI WinForms/Program.cs b/I18N Commander/UI WinForms/Program.cs index 2a1296f..f7e25a5 100644 --- a/I18N Commander/UI WinForms/Program.cs +++ b/I18N Commander/UI WinForms/Program.cs @@ -45,7 +45,7 @@ internal static class Program { try { - serviceCollection.ImportDataAndAddDatabase(loader.Result.DataFile).ConfigureAwait(false); + serviceCollection.ImportDataAndAddDatabase(loader.Result.DataFile).ConfigureAwait(false).GetAwaiter().GetResult(); } catch (JsonException) {