Closed hackermd closed 2 years ago
When one passes media_types=('image/jls', '1.2.840.10008.1.2.4.80', ) to retrieve_instance_frames(), one gets the following error:
media_types=('image/jls', '1.2.840.10008.1.2.4.80', )
retrieve_instance_frames()
ValueError: Media type "image/jls" is not supported for requested resource
The reason for that is that the client still assumes image/x-jls instead of image/jls.
image/x-jls
image/jls
When one passes
media_types=('image/jls', '1.2.840.10008.1.2.4.80', )
toretrieve_instance_frames()
, one gets the following error:The reason for that is that the client still assumes
image/x-jls
instead ofimage/jls
.