From 95ea6d99fe3276086a32bc55d90c1c2edb62f9e0 Mon Sep 17 00:00:00 2001 From: chompDev <27521899+chompDev@users.noreply.github.com> Date: Sat, 19 Jul 2025 17:49:16 +0000 Subject: [PATCH] .NET Format Style Fixes --- SPTarkov.Server/Program.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SPTarkov.Server/Program.cs b/SPTarkov.Server/Program.cs index f66c7f99..e8482b78 100644 --- a/SPTarkov.Server/Program.cs +++ b/SPTarkov.Server/Program.cs @@ -123,7 +123,9 @@ public static class Program { // This method is not expected to be async so we need to wait for the Task instead of using await keyword options.ApplicationServices.GetService()!.OnLoad().Wait(); - var httpConfig = options.ApplicationServices.GetService()?.GetConfig()!; + var httpConfig = options + .ApplicationServices.GetService() + ?.GetConfig()!; var certHelper = options.ApplicationServices.GetService()!; options.Listen( IPAddress.Parse(httpConfig.Ip),