diff --git a/hook-worker/src/util.rs b/hook-worker/src/util.rs index 31fb087..00c5432 100644 --- a/hook-worker/src/util.rs +++ b/hook-worker/src/util.rs @@ -11,7 +11,6 @@ pub async fn first_n_bytes_of_response( while let Some(chunk) = body.next().await { if buffer.len() >= n { - // Early return before reading next chunk. break; }