Skip to content

Commit

Permalink
chore: make platform more specific (#1549)
Browse files Browse the repository at this point in the history
  • Loading branch information
daibhin authored Nov 25, 2024
1 parent 1b57ea9 commit 92bb3e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extensions/exception-autocapture/stack-trace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const GECKO_PRIORITY = 50

function createFrame(filename: string, func: string, lineno?: number, colno?: number): StackFrame {
const frame: StackFrame = {
platform: 'javascript',
platform: 'web:javascript',
filename,
function: func === '<anonymous>' ? UNKNOWN_FUNCTION : func,
in_app: true, // All browser frames are considered in_app
Expand Down

0 comments on commit 92bb3e6

Please sign in to comment.