Skip to content

Commit

Permalink
Bugfix: use correct source path for non-archived source files
Browse files Browse the repository at this point in the history
  • Loading branch information
jas88 committed Aug 10, 2023
1 parent 513b5ce commit 9d89c38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DrsPlugin/Extraction/DRSImageExtraction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public override DataTable ProcessPipelineData(DataTable toProcess, IDataLoadEven
// Fast path for pre-extracted files - JS 2023-07-10
if (!sourceFileName.Contains('!'))
{
File.Copy(Path.Combine(imageExtractionPath.FullName,sourceFileName),newFilename);
File.Copy(Path.Combine(PathToImageArchive,sourceFileName),newFilename);
continue;
}

Expand Down

0 comments on commit 9d89c38

Please sign in to comment.