Skip to content

Commit 7fbf87b

Browse files
committed
Bad method name
1 parent 617c051 commit 7fbf87b

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
@@ -375,7 +375,7 @@ Raven.prototype = {
375375
}, options);
376376

377377
var stack = TraceKit.computeStackTrace(ex);
378-
var frames = this._buildNormalizedFrames(stack, options);
378+
var frames = this._prepareFrames(stack, options);
379379
data.stacktrace = {
380380
// Sentry expects frames oldest to newest
381381
frames: frames.reverse()
@@ -1086,14 +1086,14 @@ Raven.prototype = {
10861086
var j;
10871087
if (options && options.trimHeadFrames) {
10881088
for (j = 0; j < options.trimHeadFrames && j < frames.length; j++) {
1089-
frames[j].in_app = true;
1089+
frames[j].in_app = false;
10901090
}
10911091
}
10921092

10931093
// e.g. try/catch (wrapper) frames
10941094
if (options && options.trimTailFrames) {
10951095
for (j = options.trimTailFrames; j < frames.length; j++) {
1096-
frames[j].in_app = true;
1096+
frames[j].in_app = false;
10971097
}
10981098
}
10991099
}

0 commit comments

Comments
 (0)