diff StoneWebViewer/WebAssembly/StoneWebViewer.cpp @ 1531:d3cafeef07bb

fix for new interface of Orthanc::ParsedDicomFile::ExtractDicomSummary()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 06 Aug 2020 18:32:09 +0200
parents 2b7d34cb764f
children 0443d04416d9
line wrap: on
line diff
--- a/StoneWebViewer/WebAssembly/StoneWebViewer.cpp	Tue Aug 04 14:37:41 2020 +0200
+++ b/StoneWebViewer/WebAssembly/StoneWebViewer.cpp	Thu Aug 06 18:32:09 2020 +0200
@@ -1125,7 +1125,7 @@
     virtual void Handle(const OrthancStone::ParseDicomSuccessMessage& message) const ORTHANC_OVERRIDE
     {
       Orthanc::DicomMap tags;
-      message.GetDicom().ExtractDicomSummary(tags);
+      message.GetDicom().ExtractDicomSummary(tags, ORTHANC_STONE_MAX_TAG_LENGTH);
 
       std::string s;
       if (!tags.LookupStringValue(s, Orthanc::DICOM_TAG_SOP_INSTANCE_UID, false))