Hello everybody
I’m having a weird issue with my Telegram bot. I’ve got two scenarios set up:
Scenario 1 (ID [Scenario 1 ID]): This one’s supposed to handle the “/start” command and just send a greeting.
Scenario 2 (ID [Scenario 2 ID]): This one should be triggered when someone sends an audio message.
The problem is, only Scenario 1 is working. When I send “/start”, the bot replies with the greeting, which is correct. But when I send an audio message, nothing happens. It seems like Scenario 2 isn’t being triggered at all.
I’ve double-checked the filters, and they look right:
Scenario 1 filter: startsWith($1.data.update.message.text;“/start”)
Scenario 2 filter: $1.data.update.message.audio != null
I’ve also tried restarting the scenarios and clearing my browser cache, but no luck.
Could you guys help me figure out why Scenario 2 isn’t working? I need to get this bot working ASAP.
Thanks!