Bugfix in triggerUrl action

This commit is contained in:
jens 2024-01-15 16:42:16 +01:00
parent fe924f6fe9
commit bd42507521

View File

@ -779,7 +779,7 @@ public class Action
if(parameters.length >= 4)
method = parameters[3];
if(parameters.length >= 5)
if(parameters.length >= 5 && parameters[4] != null)
{
// has params
String[] paramPairs = parameters[4].split(Action.actionParameters2SeparatorOuter);