Skip to content

Commit 0fab403

Browse files
authored
fix(core): Remove abs_path from stack trace (reverting #7167) (#7623)
1 parent f6ce5c9 commit 0fab403

File tree

15 files changed

+231
-1532
lines changed

15 files changed

+231
-1532
lines changed

packages/browser/src/stack-parsers.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ const GECKO_PRIORITY = 50;
3838
function createFrame(filename: string, func: string, lineno?: number, colno?: number): StackFrame {
3939
const frame: StackFrame = {
4040
filename,
41-
abs_path: filename, // As opposed to filename, abs_path is immutable (I can't control your actions but don't touch it!)
4241
function: func,
4342
in_app: true, // All browser frames are considered in_app
4443
};

0 commit comments

Comments
 (0)