diff OrthancServer/Sources/ServerIndex.cpp @ 4139:a4f28efdfccf

"maxTagLength" must be explicitly given to ParsedDicomFile::ExtractDicomSummary()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 06 Aug 2020 18:25:47 +0200
parents 7c9ff821063a
children 0ddc5297a8ab
line wrap: on
line diff
--- a/OrthancServer/Sources/ServerIndex.cpp	Thu Aug 06 17:56:10 2020 +0200
+++ b/OrthancServer/Sources/ServerIndex.cpp	Thu Aug 06 18:25:47 2020 +0200
@@ -2468,7 +2468,7 @@
   void ServerIndex::ReconstructInstance(ParsedDicomFile& dicom)
   {
     DicomMap summary;
-    dicom.ExtractDicomSummary(summary);
+    dicom.ExtractDicomSummary(summary, ORTHANC_MAXIMUM_TAG_LENGTH);
 
     DicomInstanceHasher hasher(summary);