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]