Better errors for failing to open

This commit is contained in:
Skyler Lehmkuhl 2025-01-13 17:35:25 -05:00
parent 74809acd2d
commit 1f10ec5bcb
1 changed files with 4 additions and 0 deletions

View File

@ -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" },
);
} }
} }
} }