Skip to content

Commit

Permalink
fix(Studies): Qidosupportsincludefield should be true by default (#801)
Browse files Browse the repository at this point in the history
* fix(Studies): qidoSupportsIncludeField should be true by default
* avoided creating new var
  • Loading branch information
omartoutounji authored and dannyrb committed Aug 26, 2019
1 parent d76fab0 commit a88d865
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Empty file modified .scripts/dev.sh
100644 → 100755
Empty file.
4 changes: 4 additions & 0 deletions platform/core/src/studies/services/qido/studies.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,10 @@ export default function Studies(server, filter) {
};

const dicomWeb = new api.DICOMwebClient(config);
server.qidoSupportsIncludeField =
server.qidoSupportsIncludeField === undefined
? true
: server.qidoSupportsIncludeField;
const queryParams = getQIDOQueryParams(
filter,
server.qidoSupportsIncludeField
Expand Down

0 comments on commit a88d865

Please sign in to comment.