Skip to content

Commit

Permalink
Acquisition handling: fix maximumfieldcount check
Browse files Browse the repository at this point in the history
  • Loading branch information
dgault committed Jan 12, 2024
1 parent edb04b6 commit e29d069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loci/formats/in/ZarrReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ private void parsePlate(Map<String, Object> attr, String root, String key, Metad
if (acqDescription != null) {
store.setPlateAcquisitionDescription(acqDescription, 0, a);
}
if (acqDescription != null) {
if (maximumfieldcount != null) {
store.setPlateAcquisitionMaximumFieldCount(new PositiveInteger(maximumfieldcount), 0, a);
}
if (acqStartTime != null) {
Expand Down

0 comments on commit e29d069

Please sign in to comment.