Append attachments instead of prepending
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
Elscrux 2024-04-10 14:02:57 +02:00
parent e14e85a266
commit 5cb8179fa3
1 changed files with 1 additions and 1 deletions

View File

@ -368,7 +368,7 @@ func convertTrelloDataToVikunja(organizationName string, trelloData []*trello.Bo
}
// Other links are not attachments in Vikunja, but we can add them to the description
task.Description = "<p><a href=\"" + attachment.URL + "\">" + attachment.URL + "</a></p>\n" + task.Description
task.Description += `<p><a href="` + attachment.URL + `">` + attachment.URL + "</a></p>\n"
}
// When the cover image was set manually, we need to add it as an attachment