mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 05:55:00 +08:00
fix constness
This commit is contained in:
parent
9701fd32b7
commit
bffd5bb891
@ -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';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user