Hello everyone, I’m very new to make and not skilled in programming.
I’m trying to fetch content from a public telegram channel and post it to a mastodon account.
I’m succeeded to make the two modules to work: the Watch Update Telegram receive the content and sends it to the Mastodon Create Status module.
The only problem is to trim or truncate the text since the Mastodon server I need has a character limit to 840.
I’ve tried to add a substring function in the “Status” field, like that:
{{substring(3.message.text; 0; 300)}}...
where the 3.message.text is the API variable from Telegram module available for posting the status on Mastodon.
Unfortunately it doesn’t return anything and I’m stuck to understand on how to use functions in Make.
Thanks for any help