Skip to content

Commit 6baf568

Browse files
committed
Bugfix support for long-string multi-value params
1 parent 5e10111 commit 6baf568

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

singlecell/api-src/org/labkey/api/singlecell/pipeline/AbstractSingleCellPipelineStep.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,11 +371,13 @@ else if ("sequenceanalysis-trimmingtextarea".equals(pd.getFieldXtype()))
371371
{
372372
val = val.replace("'", "\\\'");
373373
serializeMultiValueParam(pd, body, val);
374+
return;
374375

375376
}
376377
else if (pd.isMultiValue())
377378
{
378379
serializeMultiValueParam(pd, body, val);
380+
return;
379381
}
380382

381383
body.add((pd.getVariableName() + " <- '" + val + "'"));

0 commit comments

Comments
 (0)