# HG changeset patch # User Sebastien Jodogne # Date 1688998482 -7200 # Node ID fb689ed55c099ceefcb58d02fa5ff1af8594bf59 # Parent cf20f8417eaa20c3a88a2013fc497b9e462bf6b9 fix diff -r cf20f8417eaa -r fb689ed55c09 Framework/Inputs/DicomPyramid.cpp --- a/Framework/Inputs/DicomPyramid.cpp Fri Jul 07 17:41:41 2023 +0200 +++ b/Framework/Inputs/DicomPyramid.cpp Mon Jul 10 16:14:42 2023 +0200 @@ -99,8 +99,8 @@ // Don't consider the thumbnail and overview as part of the DICOM pyramid (new in 1.0) if (tokens.size() < 2 || - (tokens[2] != "THUMBNAIL" && - tokens[2] != "OVERVIEW")) + (tokens[1] != "THUMBNAIL" && + tokens[1] != "OVERVIEW")) { instances_.push_back(instance.release()); }