Skip to content

Commit 13ba674

Browse files
committed
Make sure $log decorator doesn't change the call to $log
1 parent 281849d commit 13ba674

10 files changed

+10
-10
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "exceptionless",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "JavaScript client for Exceptionless",
55
"license": "Apache",
66
"main": "dist/exceptionless.js",

dist/exceptionless.js

+1-1
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-1
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

+1-1
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ angular.module('exceptionless', [])
2828
function decorateRegularCall(property, logLevel) {
2929
var previousFn = $delegate[property];
3030
return $delegate[property] = function () {
31-
previousFn.call(null, arguments);
31+
previousFn.apply(null, arguments);
3232
if (arguments[0] && arguments[0].length > 0) {
3333
$ExceptionlessClient.submitLog(null, arguments[0], logLevel);
3434
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "exceptionless",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "JavaScript client for Exceptionless",
55
"license": "Apache",
66
"main": "dist/exceptionless.node.js",

src/integrations/angular.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ angular.module('exceptionless', [])
3131
function decorateRegularCall(property, logLevel) {
3232
var previousFn = $delegate[property];
3333
return $delegate[property] = function () {
34-
previousFn.call(null, arguments);
34+
previousFn.apply(null, arguments);
3535
if (arguments[0] && arguments[0].length > 0) {
3636
$ExceptionlessClient.submitLog(null, arguments[0], logLevel);
3737
}

0 commit comments

Comments
 (0)