Skip to content

Commit

Permalink
chore: Do not blow up processing unrecognized edges (#35808)
Browse files Browse the repository at this point in the history
  • Loading branch information
efritz authored and unknwon committed May 23, 2022
1 parent 7a3dc62 commit f2f1bb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/codeintel/lsif/conversion/correlate.go
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ func correlateEdge(state *wrappedState, element Element) error {
}
return handler(state, element.ID, payload)
default:
return ErrUnexpectedPayload
return nil
}
}

Expand Down

0 comments on commit f2f1bb3

Please sign in to comment.