Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix bad code
  • Loading branch information
timfish committed Feb 14, 2022
commit 426828ea093e3277e4ae5018fcd9233b8c8047f3
2 changes: 1 addition & 1 deletion packages/browser/src/stack-parsers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function createFrame(filename: string, func: string, lineno?: number, colno?: nu
filename,
function: func,
// All browser frames are considered in_app
in_app = true,
in_app: true,
};

if (lineno !== undefined) {
Expand Down