Better errors for failing to open
This commit is contained in:
parent
74809acd2d
commit
1f10ec5bcb
|
|
@ -4549,6 +4549,10 @@ async function _open(path, returnJson = false) {
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
console.error(e);
|
console.error(e);
|
||||||
|
await messageDialog(
|
||||||
|
`Error replaying file: ${e}`,
|
||||||
|
{ title: "Error", kind: "error" },
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue