fix: error handling
This commit is contained in:
parent
f1412cdffa
commit
baf187ee46
1 changed files with 24 additions and 20 deletions
|
@ -14,6 +14,7 @@ const TYPE_REG = /id=(\d+)&type=(img|mp3|midi)/
|
|||
const magicHookConstr = (() => {
|
||||
const l = {}
|
||||
|
||||
try {
|
||||
hookNative(document.body, 'append', (fn) => {
|
||||
return function (...nodes: Node[]) {
|
||||
fn.call(this, ...nodes)
|
||||
|
@ -39,6 +40,9 @@ const magicHookConstr = (() => {
|
|||
}
|
||||
}
|
||||
})
|
||||
} catch (err) {
|
||||
console.error(err)
|
||||
}
|
||||
|
||||
return async (type: FileType) => {
|
||||
return new Promise<string>((resolve) => {
|
||||
|
|
Loading…
Reference in a new issue