Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct the Content-Disposition Header for preview image, in order to download with correct filename #5789

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

Amarillys
Copy link

To avoid download a webp preview image with a '.png' filename

… download as corrent filename

To avoid download a webp preview image with a '.png' filename
Correct the Content-Disposition Header for preview image, in order to…
@ltdrdata
Copy link
Collaborator

Please handle the file extension and file name separately.

@@ -420,7 +420,7 @@ async def view_image(request):
buffer.seek(0)

return web.Response(body=buffer.read(), content_type=f'image/{image_format}',
headers={"Content-Disposition": f"filename=\"{filename}\""})
headers={"Content-Disposition": f"filename=\"{filename.replace('png', image_format)}\""})
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about PurePath(filename).with_suffix(image_format).name

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants