Sep 24 2021 11:22 AM
We are developing a bot which renders and sends png images back to the user. On mobile and Windows builds of Teams, we are able to display the image within an Attachment using either a remote url or the base64 png data. However, on MacOS builds, the chat displays a narrow vertical box without the image rendered in it. Selecting a reaction, thus making the attachment wider, displays a very small render of the image without any click functionality.
I should note that this issue only appears to effect individual chats with the bot; it works as expected in if used in a channel.
Additionally, this issue came up only within the past week and appears to be unrelated to any changes in our code during that time.
This is Teams release 1.4.00.22368 on MacOS 11.5.1
var imageAttachment = new Attachment
{
ContentType = "image/png",
Name = "Chart",
ContentUrl = pngUrl,
Content = new FileDownloadInfo(pngUrl)
};
Sep 27 2021 09:26 AM
@mishyjari - We are trying to repro this issue. We will update you.
Sep 28 2021 07:01 AM
@mishyjari - We tried to repro this issue on MacOS and its working fine at our end. Our Teams app version is 1.4.00.16567.
Sep 30 2021 11:36 PM