mirror of
https://github.com/harness/drone.git
synced 2025-05-10 06:21:26 +08:00
Fixes gitlab redirects
This commit is contained in:
parent
886c0f2353
commit
cc77e2563f
@ -35,7 +35,7 @@ func RedirectSha(c *gin.Context) {
|
||||
return
|
||||
}
|
||||
|
||||
c.Redirect(301, fmt.Sprintf("/%s/%s/%d", repo.Owner, repo.Name, build.ID))
|
||||
c.Redirect(301, fmt.Sprintf("/%s/%s/%d", repo.Owner, repo.Name, build.Number))
|
||||
return
|
||||
}
|
||||
|
||||
@ -63,7 +63,7 @@ func RedirectPullRequest(c *gin.Context) {
|
||||
return
|
||||
}
|
||||
|
||||
c.Redirect(301, fmt.Sprintf("/%s/%s/%d", repo.Owner, repo.Name, build.ID))
|
||||
c.Redirect(301, fmt.Sprintf("/%s/%s/%d", repo.Owner, repo.Name, build.Number))
|
||||
return
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user