Skip to content

Commit

Permalink
Merge branch 'main' into feature/4472-Better-built-in-layer-selection
Browse files Browse the repository at this point in the history
* main:
  #4476 - Exception while rendering recommendations
  • Loading branch information
reckart committed Jan 28, 2024
2 parents eda3ab4 + 748b918 commit 17ffa7e
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 17ffa7e

Please sign in to comment.