Skip to content

Commit e0ba83c

Browse files
committed
whoops
1 parent 6640038 commit e0ba83c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/core/src/integrations/third-party-errors-filter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ function getBundleKeysForAllFramesWithFilenames(event: Event): string[][] | unde
110110
frames
111111
// Exclude frames without a filename or without lineno and colno,
112112
// since these are likely native code or built-ins
113-
.filter(frame => !!frame.filename && (frame.lineno || frame.colno) != null)
113+
.filter(frame => !!frame.filename && (frame.lineno ?? frame.colno) != null)
114114
.map(frame => {
115115
if (frame.module_metadata) {
116116
return Object.keys(frame.module_metadata)

0 commit comments

Comments
 (0)