-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
199 | async function withErrorHandling(body: () => Promise) {
200 | return body().catch((e) => {
201 | if (!(e instanceof Error)) throw e
202 | const errnoException = e as NodeJS.ErrnoException
203 | if (errnoException.code === "ENOENT") {
204 | throw new NotFoundError({ message: Resource not found: ${errnoException.path} })
^
NotFoundError: NotFoundError
data: {
message: "Resource not found: C:\Users\aleri\.local\share\opencode\storage\session\9ac17a3d71d8eef300e5b2faf4123b72d9972d3b\ses_46a0627f9ffecimhZJPBeDMVKw.json",
},
at <anonymous> (src/storage/storage.ts:204:15)
i tryied creating multiple sessions, creating old ones, starting one in opencode and trying to select it from minecraft (the session just couldn't be found)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels