Bugfix when triggering URL

This commit is contained in:
2025-03-22 20:27:59 +01:00
parent 17edf90086
commit abd346946a
3 changed files with 5 additions and 3 deletions

View File

@ -734,7 +734,8 @@ public class Action
for(String pair : paramPairs)
{
String[] pieces = pair.split(Action.actionParameters2SeparatorInner);
httpParams.put(pieces[0], pieces[1]);
if(pieces.length == 2)
httpParams.put(pieces[0], pieces[1]);
}
}