Skip to content

Commit

Permalink
Merge pull request #4477 from inception-project/bugfix/4476-Exception…
Browse files Browse the repository at this point in the history
…-while-rendering-recommendations

#4476 - Exception while rendering recommendations
  • Loading branch information
reckart authored Jan 28, 2024
2 parents 5b977de + 20f8e24 commit c9baef6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ else if (ib.hasNext()) {
// Step to the next B from the source list
LOG.trace("Stepping B from source Bs");
b = ib.next();
if (b.getBegin() > a.getEnd()) {
if (a != null && b.getBegin() > a.getEnd()) {
// All remaining b's are beyond the end of the a's and won't overlap
a = null;
}
Expand Down

0 comments on commit c9baef6

Please sign in to comment.