From 268664b698784cdfad1bf631d80cb6264a3e2fc2 Mon Sep 17 00:00:00 2001 From: Goldy <153996346+g0ldyy@users.noreply.github.com> Date: Fri, 5 Jul 2024 01:37:29 +0200 Subject: [PATCH] typo --- comet/api/stream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comet/api/stream.py b/comet/api/stream.py index a7cc4a0..9f1a3a0 100644 --- a/comet/api/stream.py +++ b/comet/api/stream.py @@ -300,7 +300,7 @@ async def stream_content(headers: dict): while True: chunk = await response.content.read( settings.PROXY_DEBRID_STREAM_BYTES_PER_CHUNK - ) # 10 MB chunks + ) if not chunk: break yield chunk