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 ( )
@@ -1080,14 +1080,14 @@ Raven.prototype = {
1080
1080
var j ;
1081
1081
if ( options && options . trimHeadFrames ) {
1082
1082
for ( j = 0 ; j < options . trimHeadFrames && j < frames . length ; j ++ ) {
1083
- frames [ j ] . in_app = true ;
1083
+ frames [ j ] . in_app = false ;
1084
1084
}
1085
1085
}
1086
1086
1087
1087
// e.g. try/catch (wrapper) frames
1088
1088
if ( options && options . trimTailFrames ) {
1089
1089
for ( j = options . trimTailFrames ; j < frames . length ; j ++ ) {
1090
- frames [ j ] . in_app = true ;
1090
+ frames [ j ] . in_app = false ;
1091
1091
}
1092
1092
}
1093
1093
}
You can’t perform that action at this time.
0 commit comments