Split query parameter calls. (#2035)
This commit is contained in:
parent
e5b578bd8e
commit
d9231fd431
@ -5,6 +5,7 @@ window.config = function(props) {
|
||||
disableMeasurementPanel: true,
|
||||
routerBasename: '/',
|
||||
enableGoogleCloudAdapter: true,
|
||||
splitQueryParameterCalls: true, // Allows the user to split QIDO SeriesInstanceUID filters into multiple calls, if the server does not support multi-valued query parameters.
|
||||
enableGoogleCloudAdapterUI: false,
|
||||
showStudyList: true,
|
||||
filterQueryParam: true,
|
||||
|
||||
@ -341,7 +341,10 @@ function ViewerRetrieveStudyData({
|
||||
}
|
||||
}
|
||||
|
||||
if (appConfig.enableGoogleCloudAdapter) {
|
||||
if (
|
||||
appConfig.splitQueryParameterCalls ||
|
||||
appConfig.enableGoogleCloudAdapter
|
||||
) {
|
||||
retrieveParams.push(true); // Seperate SeriesInstanceUID filter calls.
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user