From 52ffc45d37fc7140cc8ba728c1079766ebc430e9 Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Tue, 28 Mar 2023 23:48:54 +0200 Subject: [PATCH] Fix typo --- Pages/Index.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pages/Index.cshtml b/Pages/Index.cshtml index 78b4ad1..bdbc5e7 100644 --- a/Pages/Index.cshtml +++ b/Pages/Index.cshtml @@ -4,7 +4,7 @@ @model IndexModel @{ // Check if we are on an allowed domain - if (Vars.PermittedDomains.All(p => Request.Host.Host != $"{Vars.AuthProxySubdomain}.{p}")) + if (Vars.PermittedDomains.All(p => Request.Host.Host != $"{Vars.AuthProxySubdomain}.{p}")) { Layout = null; Response.Clear(); Response.StatusCode = StatusCodes.Status421MisdirectedRequest;