When checking the file mime types of files being uploaded in Microsoft 10's Edge browser, I get this Mime Type for .doc
files:
application/octet-stream
Apparently this indicates "arbitrary binary data": Do I need Content-Type: application/octet-stream for file download?
On other browsers I get application/msword
Is there a new way mime types are handled for .doc files for the Edge browser, and maybe other mime types I need to be aware of?
Update:
I was grabbing the mime type using php's $_FILES['uploadName']['type']