diff --git a/src/worker.ts b/src/worker.ts index ba6eb8c..1523dba 100644 --- a/src/worker.ts +++ b/src/worker.ts @@ -67,7 +67,7 @@ app.use('*', async (c, next) => { }); app.onError((err, c) => { - c.get('sentry').captureException(err); + c.get('sentry')?.captureException?.(err); console.error(err.stack); c.status(200); c.header('cache-control', noCache);