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 952a16a commit e936db9Copy full SHA for e936db9
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,7 +723,6 @@ class DICOMwebClient {
723
);
724
}
725
726
- fieldValue += `"`;
727
fieldValueParts.push(fieldValue);
728
});
729
0 commit comments