File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/core/src/integrations Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -211,9 +211,9 @@ function _getEventFilterUrl(event: Event): string | null {
211211 try {
212212 // If there are linked exceptions or exception aggregates we only want to match against the top frame of the "root" (the main exception)
213213 // The root always comes last in linked exceptions
214- const rootException = [ ...( event . exception ?. values ?? [ ] ) . reverse ( ) ] ?. find (
215- value => value . mechanism ?. parent_id === undefined && value . stacktrace ?. frames ?. length ,
216- ) ;
214+ const rootException = [ ...( event . exception ?. values ?? [ ] ) ]
215+ . reverse ( )
216+ . find ( value => value . mechanism ?. parent_id === undefined && value . stacktrace ?. frames ?. length ) ;
217217 const frames = rootException ?. stacktrace ?. frames ;
218218 return frames ? _getLastValidUrl ( frames ) : null ;
219219 } catch ( oO ) {
You can’t perform that action at this time.
0 commit comments