Escape Character Issue

I have a Thunk that uses an API tool sending data to Appsheet. When the data gets to Appsheet some text shows up as HTML entity codes or entity names as shown in the screenshots below. Not sure why this is happening. Interesting that the & is replaced with the entity name, while the ‘ is replaced with the entity number.

Screenshot from Thunk execution AI:

Screenshot from in Appsheet:

1 Like

Hi @Ryan_Parent this might be an issue with the EJS templates used in the tool definition. EJS uses different tags that provide different types of escaping:

Maybe you could switch the tag type and it would work?

Thanks Tony, switching from <%= to <%- did the trick.

1 Like