I'm generating dynamic images and include them as part of the adaptive card, the images are relatively small only 60kb, when I reply with the image for the first time, it's partially shown until I scroll up or leave the conversation I assume that triggers native update, as soon as image is cached it's loaded properly, the problem appears only with the first render
{
"type": "AdaptiveCard",
"version": "1.2",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"body": [
{
"type": "TextBlock",
"text": "Any text",
"wrap": true
},
{
"type": "Image",
"url": "https://806168b00b02.ngrok.io/myimage"
}
]
}
Is there a workaround to let the image fully render for the first time?