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

This commit is contained in:
Brad Albright
2019-12-25 01:46:16 +02:00
committed by Lauris BH
parent 30181d459d
commit 8e655728e9
+10
View File
@@ -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)