Compare commits

..

No commits in common. "75abc7834befcfd0828ca59945c11d5579b375af" and "d95158913e3ef51ca001498f0f7b5f3f233fc231" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -584,7 +584,7 @@ namespace IRaCIS.Core.API.Controllers
templateFileStream.Seek(0, SeekOrigin.Begin);
var ossRelativePath = await oSSService.UploadToOSSAsync(fileStream, $"{trialId.ToString()}/InspectionUpload/DataReconciliation", realFileName);
var ossRelativePath = await oSSService.UploadToOSSAsync(fileStream, $"{trialId.ToString()}/InspectionUpload//DataReconciliation", realFileName);
await _inspectionFileRepository.AddAsync(new InspectionFile() { FileName = realFileName, RelativePath = ossRelativePath, TrialId = trialId }, true);