diff --git a/backend/src/filters/all-exceptions.filter.ts b/backend/src/filters/all-exceptions.filter.ts index 4e394db9..5f831d39 100644 --- a/backend/src/filters/all-exceptions.filter.ts +++ b/backend/src/filters/all-exceptions.filter.ts @@ -15,8 +15,7 @@ export class AllExceptionsFilter extends SentryGlobalGraphQLFilter { const request = ctx.getRequest(); if (SKIP_REQUEST_URLS.includes(request.url)) { const response = (exception as HttpException).getResponse(); - const status = (exception as HttpException).getStatus(); - this.httpAdapterHost.httpAdapter.reply(ctx.getResponse(), response, status); + this.httpAdapterHost.httpAdapter.reply(ctx.getResponse(), response, 200); return; }