Skip to content

Commit

Permalink
fix: Remove explicit server-side transcoding (#357) (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
malaterre committed Jul 15, 2021
1 parent 821dc03 commit 88e373b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function loadImage(imageId, options) {

const promise = new Promise((resolve, reject) => {
// TODO: load bulk data items that we might need
const mediaType = 'multipart/related; type="application/octet-stream"'; // 'image/dicom+jp2';
const mediaType = 'multipart/related; type="application/octet-stream"; transfer-syntax=*'; // 'image/dicom+jp2';

// get the pixel data from the server
getPixelData(uri, imageId, mediaType)
Expand Down

0 comments on commit 88e373b

Please sign in to comment.