Skip to content

Commit

Permalink
add attempted fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JFriel committed Feb 23, 2024
1 parent 5917bb8 commit 12ccd86
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Rdmp.Dicom/Extraction/FoDicomBased/FoDicomAnonymiser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,10 @@ public DataTable ProcessPipelineData(DataTable toProcess, IDataLoadEventListener
foreach (DataRow processRow in toProcess.Rows)
{
var file = (string)processRow[RelativeArchiveColumnName];
if (file.StartsWith("./"))
{
file = file.Substring(2);
}
fileRows.Add(file,processRow);
dicomFiles.Add((file,file));
releaseIDs.Add(file, processRow[releaseColumn.GetRuntimeName()].ToString());
Expand Down

0 comments on commit 12ccd86

Please sign in to comment.