From 8ff4ad19eb8b68a629815209d11cef97d035d22e Mon Sep 17 00:00:00 2001 From: jesopo Date: Thu, 17 Oct 2019 11:50:57 +0100 Subject: [PATCH] we should be showing 'title' (not 'description') for gitlab issue events --- modules/git_webhooks/gitlab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/git_webhooks/gitlab.py b/modules/git_webhooks/gitlab.py index 9a315e47..2f2a34eb 100644 --- a/modules/git_webhooks/gitlab.py +++ b/modules/git_webhooks/gitlab.py @@ -144,7 +144,7 @@ class GitLab(object): number = utils.irc.color("#%s" % data["object_attributes"]["iid"], colors.COLOR_ID) action = data["object_attributes"]["action"] - issue_title = data["object_attributes"]["description"] + issue_title = data["object_attributes"]["title"] author = utils.irc.bold(data["user"]["username"]) url = data["object_attributes"]["url"]