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 @@ -396,7 +396,7 @@ Raven.prototype = {
396
396
} , options ) ;
397
397
398
398
var stack = TraceKit . computeStackTrace ( ex ) ;
399
- var frames = this . _buildNormalizedFrames ( stack , options ) ;
399
+ var frames = this . _prepareFrames ( stack , options ) ;
400
400
data . stacktrace = {
401
401
// Sentry expects frames oldest to newest
402
402
frames : frames . reverse ( )
@@ -1134,14 +1134,14 @@ Raven.prototype = {
1134
1134
var j ;
1135
1135
if ( options && options . trimHeadFrames ) {
1136
1136
for ( j = 0 ; j < options . trimHeadFrames && j < frames . length ; j ++ ) {
1137
- frames [ j ] . in_app = true ;
1137
+ frames [ j ] . in_app = false ;
1138
1138
}
1139
1139
}
1140
1140
1141
1141
// e.g. try/catch (wrapper) frames
1142
1142
if ( options && options . trimTailFrames ) {
1143
1143
for ( j = options . trimTailFrames ; j < frames . length ; j ++ ) {
1144
- frames [ j ] . in_app = true ;
1144
+ frames [ j ] . in_app = false ;
1145
1145
}
1146
1146
}
1147
1147
}
You can’t perform that action at this time.
0 commit comments