We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4cb996 commit b806235Copy full SHA for b806235
1 file changed
aiohttp/web_request.py
@@ -715,7 +715,7 @@ async def post(self) -> "MultiDictProxy[str | bytes | FileField]":
715
)
716
chunk = await field.read_chunk(size=2**16)
717
while chunk:
718
- chunk = field.decode(chunk)
+ chunk = await field.decode(chunk)
719
await self._loop.run_in_executor(None, tmp.write, chunk)
720
size += len(chunk)
721
if 0 < max_size < size:
0 commit comments