mirror of
https://github.com/go-gitea/gitea.git
synced 2025-06-21 21:48:00 +02:00
Fix issue link in issues page
The link assumes that the issue belongs to the signed in user, which is not necessarily the case I changed it to use repository owner name instead
This commit is contained in:
@ -235,6 +235,12 @@ func Issues(ctx *middleware.Context) {
|
||||
return
|
||||
}
|
||||
|
||||
err = issues[i].Repo.GetOwner()
|
||||
if err != nil {
|
||||
ctx.Handle(500, "user.Issues(GetOwner)", err)
|
||||
return
|
||||
}
|
||||
|
||||
issues[i].Poster, err = models.GetUserById(issues[i].PosterId)
|
||||
if err != nil {
|
||||
ctx.Handle(500, "user.Issues(GetUserById)", err)
|
||||
|
Reference in New Issue
Block a user