We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6640038 commit e0ba83cCopy full SHA for e0ba83c
1 file changed
packages/core/src/integrations/third-party-errors-filter.ts
@@ -110,7 +110,7 @@ function getBundleKeysForAllFramesWithFilenames(event: Event): string[][] | unde
110
frames
111
// Exclude frames without a filename or without lineno and colno,
112
// since these are likely native code or built-ins
113
- .filter(frame => !!frame.filename && (frame.lineno || frame.colno) != null)
+ .filter(frame => !!frame.filename && (frame.lineno ?? frame.colno) != null)
114
.map(frame => {
115
if (frame.module_metadata) {
116
return Object.keys(frame.module_metadata)
0 commit comments