Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
JFriel committed Jan 30, 2025
1 parent 7a60ce0 commit 7f66c43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rdmp.Dicom/Extraction/DicomTagToCSV.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public DataTable ProcessPipelineData(DataTable toProcess, IDataLoadEventListener


var dicomFilePaths = new AmbiguousFilePath(ArchiveRootIfAny, dicomFiles).GetDataset(FileFetchRetryLimit, FileFetchRetryTimeout, listener);
var destinationDirectory = new DirectoryInfo(Path.Combine(_extractCommand.GetExtractionDirectory().FullName;
var destinationDirectory = new DirectoryInfo(Path.Combine(_extractCommand.GetExtractionDirectory().FullName));
foreach (var dcm in dicomFilePaths)
{
try
Expand All @@ -107,7 +107,7 @@ public DataTable ProcessPipelineData(DataTable toProcess, IDataLoadEventListener
}
catch (Exception e)
{
listener.OnNotify(this, new NotifyEventArgs(ProgressEventType.Error, $"Failed to extract tags from DICOM", e));
listener.OnNotify(this, new NotifyEventArgs(ProgressEventType.Error, $"Failed to extract tags from DICOM {dcm.Item1}", e));
_errors++;
}
}
Expand Down

0 comments on commit 7f66c43

Please sign in to comment.