Skip to content

Commit 1d34c06

Browse files
committed
ignore 401 errors.
1 parent aebaa80 commit 1d34c06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/integrations/angular.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ angular.module('exceptionless', [])
55
responseError: function responseError(rejection) {
66
if (rejection.status === 404) {
77
$ExceptionlessClient.submitNotFound(rejection.config.url);
8-
} else {
8+
} else if (rejection.status !== 401) {
99
$ExceptionlessClient.createUnhandledException(new Error('HTTP response error'), 'errorHttpInterceptor')
1010
.setSource(rejection.config.url)
1111
.setProperty('status', rejection.status)

0 commit comments

Comments
 (0)