Replace commas with underscores to handle Chrome issues with commas

This commit is contained in:
Trenton Holmes 2023-03-14 19:08:10 -07:00 committed by Trenton H
parent 477fd360f8
commit bfaede26c4

View File

@ -311,7 +311,11 @@ class DocumentViewSet(
# Firefox is not able to handle unicode characters in filename field # Firefox is not able to handle unicode characters in filename field
# RFC 5987 addresses this issue # RFC 5987 addresses this issue
# see https://datatracker.ietf.org/doc/html/rfc5987#section-4.2 # see https://datatracker.ietf.org/doc/html/rfc5987#section-4.2
filename_normalized = normalize("NFKD", filename).encode("ascii", "ignore") # Chromium cannot handle commas in the filename
filename_normalized = normalize("NFKD", filename.replace(",", "_")).encode(
"ascii",
"ignore",
)
filename_encoded = quote(filename) filename_encoded = quote(filename)
content_disposition = ( content_disposition = (
f"{disposition}; " f"{disposition}; "