Skip to content

Commit

Permalink
fixes issue 285
Browse files Browse the repository at this point in the history
  • Loading branch information
naknomum committed Nov 1, 2023
1 parent b587967 commit 1f787cc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1887,8 +1887,8 @@ public MarkedIndividual loadIndividual(Row row, Encounter enc, Shepherd myShephe
mark = myShepherd.getMarkedIndividual(uuid);
}

// ID not in cache.. withName gets the first choice that matches species so caution and require global
if (mark==null&&"global".equals(individualScope)) {
// ID not in cache.. withName gets the first choice that matches species so caution
if (mark==null) {
mark = MarkedIndividual.withName(myShepherd, individualID, enc.getGenus(),enc.getSpecificEpithet());
}

Expand Down

0 comments on commit 1f787cc

Please sign in to comment.