aboutsummaryrefslogtreecommitdiffstats
path: root/modules/repository/commits.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/repository/commits.go')
-rw-r--r--modules/repository/commits.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/repository/commits.go b/modules/repository/commits.go
index c86f0d570b..a545ce952b 100644
--- a/modules/repository/commits.go
+++ b/modules/repository/commits.go
@@ -6,6 +6,7 @@ package repository
import (
"fmt"
+ "net/url"
"time"
"code.gitea.io/gitea/models"
@@ -81,7 +82,7 @@ func (pc *PushCommits) toAPIPayloadCommit(repoPath, repoLink string, commit *Pus
return &api.PayloadCommit{
ID: commit.Sha1,
Message: commit.Message,
- URL: fmt.Sprintf("%s/commit/%s", repoLink, commit.Sha1),
+ URL: fmt.Sprintf("%s/commit/%s", repoLink, url.PathEscape(commit.Sha1)),
Author: &api.PayloadUser{
Name: commit.AuthorName,
Email: commit.AuthorEmail,