mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 21:20:45 +00:00
Use getValueString, not cast to string.
This commit is contained in:
@ -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");
|
||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////
|
||||||
|
Reference in New Issue
Block a user