diff --git a/src/Tgstation.Server.Host/Controllers/ChatController.cs b/src/Tgstation.Server.Host/Controllers/ChatController.cs
index 6bae07a444..9ea7f4f5a7 100644
--- a/src/Tgstation.Server.Host/Controllers/ChatController.cs
+++ b/src/Tgstation.Server.Host/Controllers/ChatController.cs
@@ -281,7 +281,7 @@ namespace Tgstation.Server.Host.Controllers
{
ArgumentNullException.ThrowIfNull(model);
- var earlyOut = StandardModelChecks(model, false);
+ IActionResult? earlyOut = StandardModelChecks(model, false);
if (earlyOut != null)
return earlyOut;
@@ -382,8 +382,8 @@ namespace Tgstation.Server.Host.Controllers
///
/// The to validate.
/// If the is being created.
- /// An to respond with or .
- IActionResult? StandardModelChecks(ChatBotApiBase model, bool forCreation)
+ /// An to respond with or .
+ BadRequestObjectResult? StandardModelChecks(ChatBotApiBase model, bool forCreation)
{
if (model.ReconnectionInterval == 0)
throw new InvalidOperationException("RecconnectionInterval cannot be zero!");