Skip to content

Commit df508d4

Browse files
committed
Bad method name
1 parent ae422e9 commit df508d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/raven.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ Raven.prototype = {
396396
}, options);
397397

398398
var stack = TraceKit.computeStackTrace(ex);
399-
var frames = this._buildNormalizedFrames(stack, options);
399+
var frames = this._prepareFrames(stack, options);
400400
data.stacktrace = {
401401
// Sentry expects frames oldest to newest
402402
frames: frames.reverse()
@@ -1134,14 +1134,14 @@ Raven.prototype = {
11341134
var j;
11351135
if (options && options.trimHeadFrames) {
11361136
for (j = 0; j < options.trimHeadFrames && j < frames.length; j++) {
1137-
frames[j].in_app = true;
1137+
frames[j].in_app = false;
11381138
}
11391139
}
11401140

11411141
// e.g. try/catch (wrapper) frames
11421142
if (options && options.trimTailFrames) {
11431143
for (j = options.trimTailFrames; j < frames.length; j++) {
1144-
frames[j].in_app = true;
1144+
frames[j].in_app = false;
11451145
}
11461146
}
11471147
}

0 commit comments

Comments
 (0)