.WMV galley files open as .ASX files in OJS 3.3.0.6

Hi @mreedks,

Can you check what the mimetype is identified as in the database? You’ll need to link the submission file id to the file id. I think the following SQL might work (replace XXXX with the submission file id):

select f.mimetype from files as f join submission_files as sf on (sf.file_id = f.file_id) where sf.submission_file_id = XXXX;