fix constness

This commit is contained in:
Matthew Hodgson 2018-04-29 03:09:17 +01:00
parent 9701fd32b7
commit bffd5bb891

View File

@ -104,7 +104,7 @@ export function decryptFile(file) {
// they introduce XSS attacks if the Blob URI is viewed directly in the
// browser (e.g. by copying the URI into a new tab or window.)
// See warning at top of file.
const mimetype = file.mimetype ? file.mimetype.split(";")[0].trim() : '';
let mimetype = file.mimetype ? file.mimetype.split(";")[0].trim() : '';
if (!ALLOWED_BLOB_MIMETYPES[mimetype]) {
mimetype = 'application/octet-stream';
}