changeset 4475:a24d2126efd2

fix integration test test_frames_transcoding of DICOMweb plugin
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 26 Jan 2021 17:57:09 +0100
parents f8c1d94363b6
children c1f36fd13730
files OrthancFramework/Sources/DicomParsing/Internals/DicomFrameIndex.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/OrthancFramework/Sources/DicomParsing/Internals/DicomFrameIndex.cpp	Tue Jan 26 15:50:52 2021 +0100
+++ b/OrthancFramework/Sources/DicomParsing/Internals/DicomFrameIndex.cpp	Tue Jan 26 17:57:09 2021 +0100
@@ -377,7 +377,7 @@
     DicomImageInformation information(tags);
 
     // Test whether this image is composed of a sequence of fragments
-    if (dicom.tagExistsWithValue(DCM_PixelData))
+    if (dicom.tagExists(DCM_PixelData))
     {
       DcmPixelSequence* pixelSequence = FromDcmtkBridge::GetPixelSequence(dicom);
       if (pixelSequence != NULL)