Skip to content

Commit

Permalink
fix: BulkDataURI's UIDs undefined
Browse files Browse the repository at this point in the history
# Problems
- Use wrong property `dicomJson` to get UIDs

# Solutions
- Replace to right property `uidObj`
  • Loading branch information
Chinlinlee committed Apr 2, 2023
1 parent 7eafaba commit e0602a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/DICOM/dicom-json-model.js
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ class DicomJsonBinaryDataModel {
studyUID,
seriesUID,
sopInstanceUID
} = this.dicomJsonModel.dicomJson;
} = this.dicomJsonModel.uidObj;

for(let i = 0; i < this.binaryKeys.length ; i++) {
let binaryKey = this.binaryKeys[i];
Expand Down

0 comments on commit e0602a9

Please sign in to comment.