Skip to content
Snippets Groups Projects
Unverified Commit df3e6a23 authored by Patrick Cloke's avatar Patrick Cloke Committed by GitHub
Browse files

Do not 500 if the content-length is not provided when uploading media. (#8862)

Instead return the proper 400 error.
parent 112f6bd4
No related branches found
No related tags found
No related merge requests found
Fix a longstanding bug where a 500 error would be returned if the `Content-Length` header was not provided to the upload media resource.
......@@ -44,7 +44,7 @@ class UploadResource(DirectServeJsonResource):
requester = await self.auth.get_user_by_req(request)
# TODO: The checks here are a bit late. The content will have
# already been uploaded to a tmp file at this point
content_length = request.getHeader(b"Content-Length").decode("ascii")
content_length = request.getHeader("Content-Length")
if content_length is None:
raise SynapseError(msg="Request must specify a Content-Length", code=400)
if int(content_length) > self.max_upload_size:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment