Fix No Status Error

This commit is contained in:
MengYX
2019-11-23 19:11:40 +08:00
parent fef9841cb4
commit ad3e2d55fc
4 changed files with 9 additions and 2 deletions

View File

@@ -170,6 +170,7 @@ async function Decrypt(file) {
const musicUrl = URL.createObjectURL(musicData);
const filename = artists.join(" & ") + " - " + musicMeta.musicName + "." + musicMeta.format;
return {
status: true,
filename: filename,
title: musicMeta.musicName,
artist: artists.join(" & "),

View File

@@ -81,6 +81,7 @@ async function Decrypt(file) {
}
// 返回
return {
status:true,
filename: filename,
title: title,
artist: artist,

View File

@@ -32,6 +32,7 @@ async function Decrypt(file) {
const filename = artist + " - " + title + "." + filename_ext;
return {
status:true,
filename: filename,
title: title,
artist: artist,