Hello,
I updated telegram bot to10.0.4 and now I am not able to send pictures anymore with the sender object.
Before the update it was working by reading a file from absolute path with filein block in single buffer mode then with a function block setting the properties of the telegram sender with:
msg.payload.chatId = msg.originalMessage.chat.id;
msg.payload.type = "photo";
msg.payload.content = msg.payload; <-- this coming from FILEIN block
Now I get error ETELEGRAM: 400 Bad Request: message to copy not found when processing message.
Based on the documentation the type "photo" needs a value
msg.payload.content = photo[index].file_id
but I don't understand what should I set nor what is the array photo[index].
Before I was passing the BLOB object from FILEIN but now this method seems no more available.
Hope the problem is clear.
Thank you.