Skip to content

Commit ecb0205

Browse files
committed
Bad method name
1 parent b1dbc89 commit ecb0205

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()
@@ -1080,14 +1080,14 @@ Raven.prototype = {
10801080
var j;
10811081
if (options && options.trimHeadFrames) {
10821082
for (j = 0; j < options.trimHeadFrames && j < frames.length; j++) {
1083-
frames[j].in_app = true;
1083+
frames[j].in_app = false;
10841084
}
10851085
}
10861086

10871087
// e.g. try/catch (wrapper) frames
10881088
if (options && options.trimTailFrames) {
10891089
for (j = options.trimTailFrames; j < frames.length; j++) {
1090-
frames[j].in_app = true;
1090+
frames[j].in_app = false;
10911091
}
10921092
}
10931093
}

0 commit comments

Comments
 (0)