Skip to content

Commit fda2aa0

Browse files
committed
Make sure we truncate angularDocs url so it's not crazy
1 parent 1006ff3 commit fda2aa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/angular.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Raven.setDataCallback(function(data) {
5454
exception.value = matches[2];
5555
data.message = exception.type + ': ' + exception.value;
5656
// auto set a new tag specifically for the angular error url
57-
data.extra.angularDocs = matches[3];
57+
data.extra.angularDocs = matches[3].substr(0, 250);
5858
}
5959
}
6060
});

0 commit comments

Comments
 (0)