# Image\_URL not rendering image in chat

**URL:** https://forum.mattermost.com/t/image-url-not-rendering-image-in-chat/9009
**Category:** Troubleshooting
**Created:** [February 18, 2020, 4:07pm UTC](https://forum.mattermost.com/t/image-url-not-rendering-image-in-chat/9009 "2020-02-18T16:07:42Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![ereuscher](https://avatars.discourse-cdn.com/v4/letter/e/5daacb/32.png) [@ereuscher](https://forum.mattermost.com/u/ereuscher)
#### Post date: [February 18, 2020, 4:07pm UTC](https://forum.mattermost.com/t/image-url-not-rendering-image-in-chat/9009/1 "2020-02-18T16:07:42Z")

</div>

Here is the code…  
func (plugin \*MoveRequestPlugin) MonitorArmDeskAttachmentHelpMessage() \*model.SlackAttachment {  
imagePath, err := plugin.API.GetBundlePath()

```
if err != nil {
	plugin.API.LogError("could not open image path")
	return []*model.SlackAttachment{{Text: plugin.UnKnownErrMessage()}}
}

manufactStand := filepath.Join(imagePath, "assets", "NoArmsAttached.png") + " =50x50"
clampedDesk := filepath.Join(imagePath, "assets", "ClampedtoDesk.png") + " =50x50"
holeInDesk := filepath.Join(imagePath, "assets", "holeinDesk.png") + " =50x50"

return []*model.SlackAttachment{{
	Text: "Not sure what each of these options look like, well here are some images of each option to help you make your decision.\n" +
		"![](" + manufactStand + " \"Manufacturer's Stands\") ![](" + clampedDesk +
		" \"Clamped to the side of the desk\") ![](" + holeInDesk + "\"Through a hole in top of desk\")",
}}

```

}

The image shows up as a broken image. The path name is correct but it is not working.
