Skip to content

Commit c30ada0

Browse files
committed
ignore 401 errors
1 parent 1d34c06 commit c30ada0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: dist/integrations/angular.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ angular.module('exceptionless', [])
66
if (rejection.status === 404) {
77
$ExceptionlessClient.submitNotFound(rejection.config.url);
88
}
9-
else {
9+
else if (rejection.status !== 401) {
1010
$ExceptionlessClient.createUnhandledException(new Error('HTTP response error'), 'errorHttpInterceptor')
1111
.setSource(rejection.config.url)
1212
.setProperty('status', rejection.status)

0 commit comments

Comments
 (0)