mirror of
https://github.com/graphql-hive/console
synced 2026-05-22 16:48:56 +00:00
Fix issues with _lastEventId errors reported to Sentry (#2809)
This commit is contained in:
parent
ac6d63fd85
commit
1f264489ed
1 changed files with 1 additions and 1 deletions
|
|
@ -126,7 +126,7 @@ const handler: ExportedHandler<Env> = {
|
|||
});
|
||||
|
||||
try {
|
||||
return await router.handle(request, sentry.captureException).then(response => {
|
||||
return await router.handle(request, sentry.captureException.bind(sentry)).then(response => {
|
||||
if (response) {
|
||||
return response;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue