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 5380359 commit 3a1c6d7Copy full SHA for 3a1c6d7
dsf-fhir/dsf-fhir-server/src/main/java/dev/dsf/fhir/webservice/jaxrs/BinaryServiceJaxrs.java
@@ -347,8 +347,10 @@ private String toFileName(Binary binary)
347
case "application/gzip" -> ".gz";
348
case "application/json" -> ".json";
349
case "application/pdf" -> ".pdf";
350
+ case "application/pem-certificate-chain" -> ".pem";
351
case "application/x-ndjson" -> ".ndjson";
352
case "application/xml" -> ".xml";
353
+ case "application/zip" -> ".zip";
354
default -> ".bin";
355
};
356
}
0 commit comments