Mercurial > hg > orthanc-dicomweb
changeset 660:311835d686d9
typo
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 05 Jun 2024 14:37:09 +0200 |
parents | c42b1c7eed9e |
children | f85a7341b103 |
files | Plugin/WadoRsRetrieveFrames.cpp |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/Plugin/WadoRsRetrieveFrames.cpp Wed Jun 05 11:26:11 2024 +0200 +++ b/Plugin/WadoRsRetrieveFrames.cpp Wed Jun 05 14:37:09 2024 +0200 @@ -497,7 +497,7 @@ { if (!content.RestApiGet("/instances/" + orthancId + "/file?transcode=" + Orthanc::GetTransferSyntaxUid(targetSyntax), false)) { - throw Orthanc::OrthancException(Orthanc::ErrorCode_InternalError, "DICOMWeb: Unable to get transcoded file for for instance " + orthancId); + throw Orthanc::OrthancException(Orthanc::ErrorCode_InternalError, "DICOMWeb: Unable to get transcoded file for instance " + orthancId); } instance.reset(new OrthancPlugins::DicomInstance(content.GetData(), content.GetSize())); } @@ -505,7 +505,7 @@ { if (!content.RestApiGet("/instances/" + orthancId + "/file", false)) { - throw Orthanc::OrthancException(Orthanc::ErrorCode_InternalError, "DICOMWeb: Unable to get file for for instance " + orthancId); + throw Orthanc::OrthancException(Orthanc::ErrorCode_InternalError, "DICOMWeb: Unable to get file for instance " + orthancId); } instance.reset(new OrthancPlugins::DicomInstance(content.GetData(), content.GetSize())); @@ -560,4 +560,4 @@ void SetPluginCanDownloadTranscodedFile(bool enable) { pluginCanDownloadTranscodedFile = enable; -} \ No newline at end of file +}