aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/git_webhooks/gitea.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/git_webhooks/gitea.py b/modules/git_webhooks/gitea.py
index b6e54b5d..7de8811b 100644
--- a/modules/git_webhooks/gitea.py
+++ b/modules/git_webhooks/gitea.py
@@ -131,7 +131,7 @@ class Gitea(object):
outputs = []
branch = data["ref"].split("/", 2)[2]
branch = utils.irc.color(branch, colors.COLOR_BRANCH)
- author = utils.irc.bold(data["pusher"]["name"])
+ author = utils.irc.bold(data["pusher"]["login"])
if len(data["commits"]) <= 3:
for commit in data["commits"]: