From dffdbbdea00948dbf04e9dd09f518e74a9682579 Mon Sep 17 00:00:00 2001 From: Jonas Haag Date: Wed, 10 Aug 2022 11:03:22 +0200 Subject: [PATCH] Disable HTTP Expect --- Proxy.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Proxy.php b/Proxy.php index 5691aea..54f333c 100644 --- a/Proxy.php +++ b/Proxy.php @@ -213,6 +213,7 @@ protected static function splitResponseHeaders($headerString) $results[] = "$headerLine"; } + $results[] = "Expect:"; return $results; }