From b3269272214653d577b3e52b7d35f538b0b0b00f Mon Sep 17 00:00:00 2001 From: Hipposgrumm <60556345+Hipposgrumm@users.noreply.github.com> Date: Tue, 3 Dec 2024 08:55:07 -0700 Subject: [PATCH] Fixed position of parenthesis in ConfigurationController.cs --- src/Controllers/Common/ConfigurationController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Controllers/Common/ConfigurationController.cs b/src/Controllers/Common/ConfigurationController.cs index 8a1c9b0..1715f53 100644 --- a/src/Controllers/Common/ConfigurationController.cs +++ b/src/Controllers/Common/ConfigurationController.cs @@ -18,8 +18,8 @@ public class ConfigurationController : Controller { [Route("ConfigurationWebService.asmx/GetMMOServerInfo")] // used by SuperSecret public IActionResult GetMMOServerInfoWithZone([FromForm] string apiKey) { return Ok(mmoConfigService.GetMMOServerInformation( - ClientVersion.GetVersion(apiKey.ToLower())) // NOTE: in this request apiKey is send uppercase - ); + ClientVersion.GetVersion(apiKey.ToLower()) // NOTE: in this request apiKey is send uppercase + )); } [HttpPost]