Bug with the replacement of $exec value
If $exec has 2 keys similar, like: $exec.example = "123" $exec.exampleLonger "abc"
and I use $exec.exampleLonger somewhere, I get "123Longer"
If $exec has 2 keys similar, like: $exec.example = "123" $exec.exampleLonger "abc"
and I use $exec.exampleLonger somewhere, I get "123Longer"
what :thinking:
I think this must be an old app SDK in play somewhere. What app are you testing with? It shows the expected "abc" in all my tries
Exec arguments:
{ "example": "123", "exampleLonger": "abc" }
Repeat after me:
{
"example": "$exec.example",
"exampleLonger": "$exec.exampleLonger"
}

But, with repeat after me:
$exec.exampleLonger

example
hmm, so it must have something to do with nested values and tokenization :thinking: