diff --git a/frontend/src/app/sentry/sentry-reporter.ts b/frontend/src/app/sentry/sentry-reporter.ts index 13a03c9871..e6a8677101 100644 --- a/frontend/src/app/sentry/sentry-reporter.ts +++ b/frontend/src/app/sentry/sentry-reporter.ts @@ -116,7 +116,8 @@ export class SentryReporter implements ErrorReporter { public captureException(err:Error|string) { if (!this.client || !err) { - return this.handleOfflineMessage('captureException', Array.from(arguments)); + this.handleOfflineMessage('captureException', Array.from(arguments)); + throw err; } if (typeof err === 'string') {