Use getValueString, not cast to string.

This commit is contained in:
2025-05-23 11:11:18 -05:00
parent 89eec41ac0
commit 5daa221ac9

View File

@ -198,10 +198,10 @@ public class RunBackendStepAction
////////////////////////////////////////////////// //////////////////////////////////////////////////
// look for record ids in the input data values // // look for record ids in the input data values //
////////////////////////////////////////////////// //////////////////////////////////////////////////
String recordIds = (String) runBackendStepInput.getValue("recordIds"); String recordIds = runBackendStepInput.getValueString("recordIds");
if(recordIds == null) if(recordIds == null)
{ {
recordIds = (String) runBackendStepInput.getValue("recordId"); recordIds = runBackendStepInput.getValueString("recordId");
} }
/////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////