Danny Roosevelt : Hey it looks like there are 2 issues here:
- The
""
around the value you’re trying to pass for theurl
field is getting evaluated literally, so Discord is getting it as{{steps…}}
instead ofhttp...
like I think you’re intending. - Within those
""
, we aren’t evaluating anything inside the{{}}
because that’s not technically valid JS due to the{{}}
at the top of that code block. You should actually just pass the variable directly, without the surrounding{{}}
.