diff --git a/supervisor/api/ingress.py b/supervisor/api/ingress.py index 55a7382c6..4ba7f8e1a 100644 --- a/supervisor/api/ingress.py +++ b/supervisor/api/ingress.py @@ -279,7 +279,7 @@ class APIIngress(CoreSysAttributes): try: response.headers["X-Accel-Buffering"] = "no" await response.prepare(request) - async for data in result.content.iter_chunked(4096): + async for data, _ in result.content.iter_chunks(): await response.write(data) except (