File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -375,7 +375,7 @@ Raven.prototype = {
375
375
} , options ) ;
376
376
377
377
var stack = TraceKit . computeStackTrace ( ex ) ;
378
- var frames = this . _buildNormalizedFrames ( stack , options ) ;
378
+ var frames = this . _prepareFrames ( stack , options ) ;
379
379
data . stacktrace = {
380
380
// Sentry expects frames oldest to newest
381
381
frames : frames . reverse ( )
@@ -1086,14 +1086,14 @@ Raven.prototype = {
1086
1086
var j ;
1087
1087
if ( options && options . trimHeadFrames ) {
1088
1088
for ( j = 0 ; j < options . trimHeadFrames && j < frames . length ; j ++ ) {
1089
- frames [ j ] . in_app = true ;
1089
+ frames [ j ] . in_app = false ;
1090
1090
}
1091
1091
}
1092
1092
1093
1093
// e.g. try/catch (wrapper) frames
1094
1094
if ( options && options . trimTailFrames ) {
1095
1095
for ( j = options . trimTailFrames ; j < frames . length ; j ++ ) {
1096
- frames [ j ] . in_app = true ;
1096
+ frames [ j ] . in_app = false ;
1097
1097
}
1098
1098
}
1099
1099
}
You can’t perform that action at this time.
0 commit comments