mirror of
https://gitlab.com/RemixDev/deemix-js.git
synced 2024-12-28 18:36:26 +00:00
Add stack to unknown error report
This commit is contained in:
parent
a47278ce65
commit
2cc3df059a
|
@ -562,7 +562,8 @@ class Downloader {
|
|||
console.trace(e)
|
||||
result = {error:{
|
||||
message: e.message,
|
||||
data: itemData
|
||||
data: itemData,
|
||||
stack: String(e.stack)
|
||||
}}
|
||||
}
|
||||
}
|
||||
|
@ -578,7 +579,8 @@ class Downloader {
|
|||
failed: true,
|
||||
data: error.data,
|
||||
error: error.message,
|
||||
errid: error.errid || null
|
||||
errid: error.errid || null,
|
||||
stack: error.stack || null
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue