aboutsummaryrefslogtreecommitdiffstats
path: root/modules/webhook/discord.go
diff options
context:
space:
mode:
authorJohn Olheiser <42128690+jolheiser@users.noreply.github.com>2020-01-08 17:10:34 -0600
committerzeripath <art27@cantab.net>2020-01-08 23:10:34 +0000
commit5b2d9333f1d06a15f11906b39c4867cc5d1c9448 (patch)
tree76081204412a1f909769c6ee2d1e9c5a58b04cd9 /modules/webhook/discord.go
parent14a96874442a13bb212affb13a585f0536d89c2a (diff)
downloadgitea-5b2d9333f1d06a15f11906b39c4867cc5d1c9448.tar.gz
gitea-5b2d9333f1d06a15f11906b39c4867cc5d1c9448.zip
Add HTML URL to API Issues (#9654)
* Add HTML URL to API Issues Signed-off-by: jolheiser <john.olheiser@gmail.com> * Swagger Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'modules/webhook/discord.go')
-rw-r--r--modules/webhook/discord.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/webhook/discord.go b/modules/webhook/discord.go
index c1e8421228..732821c183 100644
--- a/modules/webhook/discord.go
+++ b/modules/webhook/discord.go
@@ -236,7 +236,7 @@ func getDiscordIssuesPayload(p *api.IssuePayload, meta *DiscordMeta) (*DiscordPa
{
Title: text,
Description: attachmentText,
- URL: p.Issue.URL,
+ URL: p.Issue.HTMLURL,
Color: color,
Author: DiscordEmbedAuthor{
Name: p.Sender.UserName,