Skip to content

Commit 1515aee

Browse files
committed
Update deps and fix unit test issues
1 parent 9f52a6d commit 1515aee

17 files changed

+5926
-5231
lines changed

dist/exceptionless.d.ts

+258-261
Large diffs are not rendered by default.

dist/exceptionless.js

+786-788
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.min.js

+1-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.node.js

+843-872
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.node.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/integrations/angular.js

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
"use strict";
2-
Object.defineProperty(exports, "__esModule", { value: true });
3-
var angular = require("angular");
41
angular.module('exceptionless', [])
52
.constant('$ExceptionlessClient', exceptionless.ExceptionlessClient.default)
63
.factory('exceptionlessHttpInterceptor', ['$q', '$ExceptionlessClient', function ($q, $ExceptionlessClient) {
@@ -33,12 +30,16 @@ angular.module('exceptionless', [])
3330
function decorateRegularCall(property, logLevel) {
3431
var previousFn = $delegate[property];
3532
return $delegate[property] = function () {
33+
var args = [];
34+
for (var _i = 0; _i < arguments.length; _i++) {
35+
args[_i] = arguments[_i];
36+
}
3637
if (angular.mock) {
3738
$delegate[property].logs = [];
3839
}
39-
previousFn.apply(null, arguments);
40-
if (arguments[0] && arguments[0].length > 0) {
41-
$ExceptionlessClient.submitLog(null, arguments[0], logLevel);
40+
previousFn.apply(null, args);
41+
if (args[0] && args[0].length > 0) {
42+
$ExceptionlessClient.submitLog(null, args[0], logLevel);
4243
}
4344
};
4445
}

dist/submitSync.js

+2-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/submitSync.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)