Don't let onError fail if no sentry

This commit is contained in:
dangered wolf 2023-11-10 04:52:36 -05:00
parent b70ad420c3
commit d509965a3d
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -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);