diff options
author | 2023-09-30 17:15:40 -0700 | |
---|---|---|
committer | 2023-09-30 17:16:06 -0700 | |
commit | 8775d3755974831dc2676ed155808a973a6352aa (patch) | |
tree | 1d2059905d755d65d5bd465516e9c8122045248f | |
parent | 54d25b8f6b0f30b07146162a15d5f500fd45b2ee (diff) | |
download | bun-8775d3755974831dc2676ed155808a973a6352aa.tar.gz bun-8775d3755974831dc2676ed155808a973a6352aa.tar.zst bun-8775d3755974831dc2676ed155808a973a6352aa.zip |
Fix regression
-rw-r--r-- | src/http_client_async.zig | 2 |
1 files changed, 1 insertions, 1 deletions
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) |