From ecfff24d25e2f532fb1a1deefa578f13b4a63ce3 Mon Sep 17 00:00:00 2001 From: Uncled1023 Date: Sun, 22 May 2022 21:39:33 -0700 Subject: [PATCH] Fixed error code title --- IdentityServer/Controllers/ErrorController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IdentityServer/Controllers/ErrorController.cs b/IdentityServer/Controllers/ErrorController.cs index 23424a0..e8e4707 100644 --- a/IdentityServer/Controllers/ErrorController.cs +++ b/IdentityServer/Controllers/ErrorController.cs @@ -58,7 +58,7 @@ namespace Teknik.IdentityServer.Controllers [AllowAnonymous] public IActionResult HttpGeneral(int statusCode) { - ViewBag.Title = statusCode; + ViewBag.Title = statusCode.ToString(); LogError(LogLevel.Error, "HTTP Error Code: " + statusCode);