Skip to content

Commit

Permalink
fix: wrong 00081190 in instance level
Browse files Browse the repository at this point in the history
  • Loading branch information
Chinlinlee committed Apr 14, 2023
1 parent 21b2fd0 commit a3244e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/mongodb/models/dicom.js
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ dicomModelSchema.statics.getDicomJson = async function (queryOptions) {
obj["00081190"] = {
vr: "UR",
Value: [
`${queryOptions.retrieveBaseUrl}/${obj["0020000D"]["Value"][0]}/series/${obj["0020000E"]["Value"][0]}`
`${queryOptions.retrieveBaseUrl}/${obj["0020000D"]["Value"][0]}/series/${obj["0020000E"]["Value"][0]}/instances/${obj["00080018"]["Value"][0]}`
]
};
return obj;
Expand Down

0 comments on commit a3244e4

Please sign in to comment.