Edit index.html Upgrade Dependencies

This commit is contained in:
MengYX
2020-01-31 11:29:16 +08:00
parent 304ad63585
commit 7556c39c71
5 changed files with 54 additions and 65 deletions

View File

@@ -26,7 +26,7 @@ async function Decrypt(file, raw_filename, raw_ext) {
if (!(raw_ext in OriginalExtMap)) {
return {status: false, message: "File type is incorrect!"}
}
let new_ext = OriginalExtMap[raw_ext]
let new_ext = OriginalExtMap[raw_ext];
const mime = util.AudioMimeType[new_ext];
// 读取文件
const fileBuffer = await util.GetArrayBuffer(file);