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

lunny/display_deleted_branch2
Brad Albright 4 years ago committed by Lauris BH
parent 30181d459d
commit 8e655728e9

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

Loading…
Cancel
Save