Browse Source

Ensure that ctx.Written is checked after issues(...) calls (#15797) (#15798)

Fix issue noted in #15783

Signed-off-by: Andrew Thornton <art27@cantab.net>

Co-authored-by: zeripath <art27@cantab.net>
tags/v1.14.2
6543 3 years ago
parent
commit
af11549fb2
No account linked to committer's email address
1 changed files with 3 additions and 0 deletions
  1. 3
    0
      routers/repo/issue.go

+ 3
- 0
routers/repo/issue.go View File

@@ -374,6 +374,9 @@ func Issues(ctx *context.Context) {
}

issues(ctx, ctx.QueryInt64("milestone"), ctx.QueryInt64("project"), util.OptionalBoolOf(isPullList))
if ctx.Written() {
return
}

var err error
// Get milestones

Loading…
Cancel
Save