diff --git a/src/dicomweb_client/web.py b/src/dicomweb_client/web.py index 3b305a2..2b12107 100644 --- a/src/dicomweb_client/web.py +++ b/src/dicomweb_client/web.py @@ -1016,10 +1016,10 @@ def _http_get_multipart_application_dicom( '"application/dicom"' ) warn(warning_message, category=UserWarning) - part = pydicom.dcmread(BytesIO(response.content)) + part = pydicom.dcmread(BytesIO(response.content), force=True) return iter([part]) return ( - pydicom.dcmread(BytesIO(part)) + pydicom.dcmread(BytesIO(part), force=True) for part in self._decode_multipart_message(response, stream=stream) )