fix(core): Do not report instances of FilterError to Sentry (no-changelog) (#11388)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™ 2024-10-24 17:56:32 +02:00 committed by GitHub
parent ed30d43236
commit 5341ed228d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -25,7 +25,7 @@ export class FilterError extends ApplicationError {
message: string,
readonly description: string,
) {
super(message);
super(message, { level: 'warning' });
}
}