Add Tag Edit Function & Wasm for Qmc & Kgm #5

Merged
um-dev merged 17 commits from nullptr-0/web:master into master 2022-11-24 07:32:59 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 4716579b20 - Show all commits

View File

@ -22,12 +22,12 @@ export async function Decrypt(file: Blob, raw_filename: string, raw_ext: string)
console.log('qmc: using wasm decoder');
const qmcDecrypted = await DecryptQmcWasm(buffer, raw_ext);
// 若 qmc 检测失败,降级到 v1 再尝试一次
// 若 wasm 失败,降级到 js 再尝试一次
if (qmcDecrypted.success) {
musicDecoded = qmcDecrypted.data;
console.log('qmc wasm decoder suceeded');
} else {
console.warn('QmcWasm failed with error %s', qmcDecrypted.error || '(no error)');
console.warn('QmcWasm failed with error %s', qmcDecrypted.error || '(unknown error)');
nullptr-0 marked this conversation as resolved Outdated

no error 应为 unknown error

`no error` 应为 `unknown error`。
}
}