From bfcb3378f09ff24b0f84ddb10e7468a5c0580189 Mon Sep 17 00:00:00 2001 From: Kevin Dew Date: Thu, 5 Sep 2024 15:31:16 +0100 Subject: [PATCH] Add missing semi-colon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🙈 --- www/www.vcl.tftpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/www.vcl.tftpl b/www/www.vcl.tftpl index 33f4011..2f670cb 100644 --- a/www/www.vcl.tftpl +++ b/www/www.vcl.tftpl @@ -377,7 +377,7 @@ sub vcl_recv { # otherwise pass through if (req.url ~ "^/chat/") { if (req.http.cookie:_govuk_chat_session) { - return(pass) + return(pass); } else { unset req.http.Cookie; }