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 e153ce2 commit f277518Copy full SHA for f277518
packages/core/src/integrations/eventFilters.ts
@@ -213,7 +213,7 @@ function _getEventFilterUrl(event: Event): string | null {
213
// The root always comes last in linked exceptions
214
const rootException = [...(event.exception?.values ?? [])]
215
.reverse()
216
- ?.find(value => value.mechanism?.parent_id === undefined && value.stacktrace?.frames?.length);
+ .find(value => value.mechanism?.parent_id === undefined && value.stacktrace?.frames?.length);
217
const frames = rootException?.stacktrace?.frames;
218
return frames ? _getLastValidUrl(frames) : null;
219
} catch (oO) {
0 commit comments