From 0a6175a73f827e13c04681f0c0d331d4d767131b Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Sat, 30 Sep 2023 17:15:40 -0700 Subject: Fix regression --- src/http_client_async.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http_client_async.zig b/src/http_client_async.zig index 65ffbee62..1e0ba7cc0 100644 --- a/src/http_client_async.zig +++ b/src/http_client_async.zig @@ -3447,7 +3447,7 @@ pub fn handleResponseMetadata( if (this.proxy_tunneling and this.proxy_tunnel == null) { if (response.status_code == 200) { // signal to continue the proxing - return ShouldContinue.finished; + return ShouldContinue.continue_streaming; } //proxy denied connection so return proxy result (407, 403 etc) -- cgit v1.2.3