From ecd31e3902e0d73ad066ee0efa90be6b515d8bfe Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Wed, 8 Aug 2018 14:26:34 -0400 Subject: [PATCH] Fix a typo --- src/Tgstation.Server.Host/Controllers/ApiController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Controllers/ApiController.cs b/src/Tgstation.Server.Host/Controllers/ApiController.cs index 3574f228cd..d4ef28f3c6 100644 --- a/src/Tgstation.Server.Host/Controllers/ApiController.cs +++ b/src/Tgstation.Server.Host/Controllers/ApiController.cs @@ -151,7 +151,7 @@ namespace Tgstation.Server.Host.Controllers { if(!ApiHeaders.InstanceId.HasValue) { - await BadRequest(new ErrorMessage { Message = "Missing InstanceId header!" }).ExecuteResultAsync(context).ConfigureAwait(false); + await BadRequest(new ErrorMessage { Message = "Missing Instance header!" }).ExecuteResultAsync(context).ConfigureAwait(false); return; } if (AuthenticationContext.InstanceUser == null)