1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-03 01:45:47 +00:00

adding calls to issue.LoadRepo() prior to calling issue.HTMLURL() (#9484)

This commit is contained in:
Brad Albright 2019-12-24 17:46:16 -06:00 committed by Lauris BH
parent 30181d459d
commit 8e655728e9

View File

@ -29,6 +29,11 @@ func AddDependency(ctx *context.Context) {
return return
} }
if err = issue.LoadRepo(); err != nil {
ctx.ServerError("LoadRepo", err)
return
}
// Redirect // Redirect
defer ctx.Redirect(issue.HTMLURL(), http.StatusSeeOther) defer ctx.Redirect(issue.HTMLURL(), http.StatusSeeOther)
@ -83,6 +88,11 @@ func RemoveDependency(ctx *context.Context) {
return return
} }
if err = issue.LoadRepo(); err != nil {
ctx.ServerError("LoadRepo", err)
return
}
// Redirect // Redirect
ctx.Redirect(issue.HTMLURL(), http.StatusSeeOther) ctx.Redirect(issue.HTMLURL(), http.StatusSeeOther)