Skip to content

Commit

Permalink
TEMP: get the error without server log
Browse files Browse the repository at this point in the history
  • Loading branch information
Espen Norderud committed Aug 7, 2023
1 parent 903b889 commit 6d01db3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/routes/api/create-conference/+server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,8 @@ export const POST = (async ({ request }) => {
success: false,
ok: false,
status: 500,
statusText: 'Error when storing new conference. See server log for details.'
statusText: 'Error when storing new conference. See server log for details.',
error: JSON.stringify(error)
});
}

Expand Down

0 comments on commit 6d01db3

Please sign in to comment.