mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +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 //
|
||||
//////////////////////////////////////////////////
|
||||
String recordIds = (String) runBackendStepInput.getValue("recordIds");
|
||||
String recordIds = runBackendStepInput.getValueString("recordIds");
|
||||
if(recordIds == null)
|
||||
{
|
||||
recordIds = (String) runBackendStepInput.getValue("recordId");
|
||||
recordIds = runBackendStepInput.getValueString("recordId");
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////
|
||||
|
Reference in New Issue
Block a user