This commit is contained in:
Nathan Thomas 2024-01-24 15:55:37 -08:00
parent 3f7a1af3d0
commit 42e12c78c0
1 changed files with 1 additions and 2 deletions

View File

@ -134,8 +134,7 @@ class DeezerDownloadable(Downloadable):
)
buf = bytearray()
async for chunk in resp.content.iter_chunks():
data, _ = chunk
async for data, _ in resp.content.iter_chunks():
buf += data
callback(len(data))