From 97ec8eab41835ba28c11fc1fa802f85ecf2a4b2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20G=C3=BCnther?= Date: Wed, 13 Nov 2019 16:00:42 +0100 Subject: [PATCH] Avoid uncaught error resource (http calls) --- frontend/src/app/sentry/sentry-reporter.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/sentry/sentry-reporter.ts b/frontend/src/app/sentry/sentry-reporter.ts index 5642c5e423..bd9338667e 100644 --- a/frontend/src/app/sentry/sentry-reporter.ts +++ b/frontend/src/app/sentry/sentry-reporter.ts @@ -84,7 +84,9 @@ export class SentryReporter implements ErrorReporter { debug: !environment.production, ignoreErrors: [ // Transition movements, - 'The transition has been superseded by a different transition' + 'The transition has been superseded by a different transition', + // Uncaught error resource promises + 'Uncaught (in promise): [ErrorResource' ] });