We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d745f65 commit bc35f09Copy full SHA for bc35f09
src/api.js
@@ -667,7 +667,7 @@ class DICOMwebClient {
667
mediaTypes.forEach(item => {
668
const { transferSyntaxUID, mediaType } = item;
669
DICOMwebClient._assertMediaTypeIsValid(mediaType);
670
- let fieldValue = `multipart/related; type="${mediaType}"`;
+ let fieldValue = `multipart/related; type="${mediaType}`;
671
672
if (isObject(supportedMediaTypes)) {
673
// SupportedMediaTypes is a lookup table that maps Transfer Syntax UID
@@ -723,6 +723,7 @@ class DICOMwebClient {
723
);
724
}
725
726
+ fieldValue += `"`;
727
fieldValueParts.push(fieldValue);
728
});
729
0 commit comments