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 1d34c06 commit c30ada0Copy full SHA for c30ada0
dist/integrations/angular.js
@@ -6,7 +6,7 @@ angular.module('exceptionless', [])
6
if (rejection.status === 404) {
7
$ExceptionlessClient.submitNotFound(rejection.config.url);
8
}
9
- else {
+ else if (rejection.status !== 401) {
10
$ExceptionlessClient.createUnhandledException(new Error('HTTP response error'), 'errorHttpInterceptor')
11
.setSource(rejection.config.url)
12
.setProperty('status', rejection.status)
0 commit comments