Fix markdown link parsing for in

This commit is contained in:
Ed
2018-12-17 19:00:43 -05:00
parent c7900456b4
commit 1c2dfeddfe

View File

@@ -137,6 +137,9 @@ func (c *InCommand) getAttachments(releaseBody string) ([]attachment, error) {
continue
}
nameStart++
urlStart++
attachments = append(attachments, attachment{
Name: line[nameStart:nameEnd],
URL: line[urlStart:urlEnd],