Re-raise local sentry error

[ci skip]
pull/7910/head
Oliver Günther 5 years ago
parent 80435632ff
commit f91deb5907
No known key found for this signature in database
GPG Key ID: A3A8BDAD7C0C552C
  1. 3
      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') {

Loading…
Cancel
Save