BunnyCDN doesn't return content-type (#251)

This commit is contained in:
Michael Manfre 2022-12-24 00:17:43 -05:00 committed by GitHub
parent aca77314d1
commit d88db5efbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -63,6 +63,8 @@ async def get_remote_file(
pass
if allow_download:
file = ContentFile(await stream.aread(), name=url)
return file, stream.headers["content-type"]
return file, stream.headers.get(
"content-type", "application/octet-stream"
)
return None, None