Fixed position of parenthesis in ConfigurationController.cs

This commit is contained in:
Hipposgrumm 2024-12-03 08:55:07 -07:00 committed by GitHub
parent 5dd2689b0a
commit b326927221
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,8 +18,8 @@ public class ConfigurationController : Controller {
[Route("ConfigurationWebService.asmx/GetMMOServerInfo")] // used by SuperSecret [Route("ConfigurationWebService.asmx/GetMMOServerInfo")] // used by SuperSecret
public IActionResult GetMMOServerInfoWithZone([FromForm] string apiKey) { public IActionResult GetMMOServerInfoWithZone([FromForm] string apiKey) {
return Ok(mmoConfigService.GetMMOServerInformation( 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] [HttpPost]