Skip to content

Commit 0925e53

Browse files
committed
Remove Content-Disposition header entirely on assets
1 parent b74b810 commit 0925e53

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

plain/plain/assets/views.py

+6
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,12 @@ def update_headers(self, headers, path):
149149
if etag := self.get_etag(path):
150150
headers.setdefault("ETag", etag)
151151

152+
if "Content-Disposition" in headers:
153+
# This header messes up Safari...
154+
# https://github.com/evansd/whitenoise/commit/93657cf88e14b919cb726864814617a6a639e507
155+
# At some point, should probably look at not using FileResponse at all?
156+
del headers["Content-Disposition"]
157+
152158
return headers
153159

154160
def is_immutable(self, path):

0 commit comments

Comments
 (0)