gfaraj/super-bot

Caption in attachment

Closed this issue · 2 comments

Hello, i would like to set an caption in the attachment object for images.
Something like this:

    bot.respond({ attachment: {
        data: `data:image/jpeg;base64,${albumImage}`,
        mimetype: 'image/jpeg',
        //caption:`Album Image` <--------------
    }});

Hi there,

You can have the desired effect if you add a text property to the message:

bot.respond({ text: 'Album Image', attachment: { data: ``data:image/jpeg;base64,${albumImage}``, mimetype: 'image/jpeg' }});

Let me know if that works for you.

Perfect, works like a charm!
Thanks so much.