Skip to content

Commit

Permalink
ignore 404s
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Sep 21, 2023
1 parent c576533 commit 7d061ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/utils/http-exception.filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 7d061ad

Please sign in to comment.