# HG changeset patch # User Sebastien Jodogne # Date 1762949569 -3600 # Node ID 2bd27a2669370024e47da3a09a12b7c2dc88170c # Parent d757ef9df8a780cc749247f8e73ed07991dbbb1b fix spelling of DICOMWeb as DICOMweb diff -r d757ef9df8a7 -r 2bd27a266937 NEWS --- a/NEWS Fri Oct 24 16:33:29 2025 +0200 +++ b/NEWS Wed Nov 12 13:12:49 2025 +0100 @@ -16,7 +16,8 @@ only showing the time required to execute a WADO-RS query. For example: WADO-RS: elapsed: 26106623 us, rate: 14.86 instances/s, 155.23Mbps * Fix false errors logs generated e.g when OHIF requests the /dicom-web/studies/../metadata route: - "dicom-web:/Configuration.cpp:643] Unsupported return MIME type: application/dicom+json, multipart/related; type=application/octet-stream; transfer-syntax=*, will return DICOM+JSON" + "dicom-web:/Configuration.cpp:643] Unsupported return MIME type: application/dicom+json, + multipart/related; type=application/octet-stream; transfer-syntax=*, will return DICOM+JSON" Version 1.20 (2025-05-12) diff -r d757ef9df8a7 -r 2bd27a266937 Plugin/Plugin.cpp --- a/Plugin/Plugin.cpp Fri Oct 24 16:33:29 2025 +0200 +++ b/Plugin/Plugin.cpp Wed Nov 12 13:12:49 2025 +0100 @@ -747,7 +747,10 @@ std::string publicUrlRoot = OrthancPlugins::Configuration::GetPublicRoot(); LOG(WARNING) << "DICOMweb public root: " << publicUrlRoot; - LOG(WARNING) << "The DICOMWeb plugin will use " << (OrthancPlugins::Configuration::GetWadoRsLoaderThreadsCount() == 0 ? 1 : OrthancPlugins::Configuration::GetWadoRsLoaderThreadsCount()) << " threads to load DICOM files for WADO-RS queries"; + LOG(WARNING) << "The DICOMweb plugin will use " + << (OrthancPlugins::Configuration::GetWadoRsLoaderThreadsCount() == 0 ? 1 : + OrthancPlugins::Configuration::GetWadoRsLoaderThreadsCount()) + << " threads to load DICOM files for WADO-RS queries"; } else {