We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e18e938 commit 2ff0a5eCopy full SHA for 2ff0a5e
marklogic-client-api/src/main/java/com/marklogic/client/impl/OkHttpServices.java
@@ -5827,9 +5827,10 @@ private RequestBody makeRequestBody(CallField[] params) {
5827
if (paramValues != null) {
5828
paramValues
5829
.filter(paramValue -> paramValue != null)
5830
- .forEachOrdered(paramValue ->
5831
- multiBldr.addFormDataPart(paramName, null, makeRequestBody(paramValue))
5832
- );
+ .forEachOrdered(paramValue -> {
+ hasValue.set();
+ multiBldr.addFormDataPart(paramName, null, makeRequestBody(paramValue));
5833
+ });
5834
}
5835
} else if (param instanceof SingleNodeCallField) {
5836
SingleNodeCallField singleNodeParam = (SingleNodeCallField) param;
0 commit comments