You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found a bug in the returned mime type for .xlsx files.
Steps to reproduce:
Generate test excel file e.g. text.xlsx
Generate share link
Go to download site
Click download button on download site
Browser opens window where you can decide to:
a. open with excel
b. OR save file
Observed for:
a. if open with excel, file will be opened with excel but with filename text.xlsx.xls and not text.xlsx ! Which cause an error.
b. Save as file which will be correct as text.xlsx
Expected for:
a. Should be opened correctly as text.xlsx and not text.xlsx.xls
Suggested bug:
The return content type for the file will be:
Content-Type: application/vnd.ms-excel
But this is the content type of .xls, but excel recognize the ending .xlsx and so it add an .xls.
Hi,
I found a bug in the returned mime type for .xlsx files.
Steps to reproduce:
text.xlsx
a.
open with excel
b. OR
save file
Observed for:
a. if
open with excel
, file will be opened with excel but with filenametext.xlsx.xls
and nottext.xlsx
! Which cause an error.b. Save as file which will be correct as
text.xlsx
Expected for:
a. Should be opened correctly as
text.xlsx
and nottext.xlsx.xls
Suggested bug:
The return content type for the file will be:
But this is the content type of
.xls
, but excel recognize the ending.xlsx
and so it add an.xls
.The correct content type of
.xlsx
seems to beSee: https://stackoverflow.com/a/4212908
Best
The text was updated successfully, but these errors were encountered: