Fix set operation on {var::*}

This commit is contained in:
Govindas 2021-01-26 11:54:49 +02:00
parent c2ebac9030
commit fb3a389ee4
1 changed files with 10 additions and 0 deletions

View File

@ -165,7 +165,17 @@ public class RedisController extends BinaryJedisPubSub implements Runnable {
// variable.change(null, (Object[]) inputValue, Changer.ChangeMode.REMOVE);
break;
case "SET":
String variableName = variableNames.get(i).toString();
//this is needed, because setting a {variable::*} causes weird behavior, like
//1st set operation is no data, 2nd has data, etc.
//if you set it to null before action, it works correctly
if (variableName.charAt(variableName.length()-1) == '*') {
Variables.setVariable(variableName, null, null, false);
}
Variables.setVariable(variableNames.get(i).toString(), inputValue, null, false);
}
}
}