From 7d061ad7840b498e1f21377e164259fbb1d58fcc Mon Sep 17 00:00:00 2001 From: Kyle Kemp Date: Thu, 21 Sep 2023 11:22:04 -0500 Subject: [PATCH] ignore 404s --- server/src/utils/http-exception.filter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/utils/http-exception.filter.ts b/server/src/utils/http-exception.filter.ts index 64aca81..f9a42a4 100644 --- a/server/src/utils/http-exception.filter.ts +++ b/server/src/utils/http-exception.filter.ts @@ -11,7 +11,7 @@ import * as Rollbar from 'rollbar'; @Catch(HttpException) export class HttpExceptionFilter implements ExceptionFilter { - private readonly ignoredCodes = [401]; + private readonly ignoredCodes = [401, 404]; private rollbar: Rollbar; constructor(@Inject(ROLLBAR_CONFIG) private rollbarConfig) {