We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aebaa80 commit 1d34c06Copy full SHA for 1d34c06
src/integrations/angular.ts
@@ -5,7 +5,7 @@ angular.module('exceptionless', [])
5
responseError: function responseError(rejection) {
6
if (rejection.status === 404) {
7
$ExceptionlessClient.submitNotFound(rejection.config.url);
8
- } else {
+ } else if (rejection.status !== 401) {
9
$ExceptionlessClient.createUnhandledException(new Error('HTTP response error'), 'errorHttpInterceptor')
10
.setSource(rejection.config.url)
11
.setProperty('status', rejection.status)
0 commit comments