diff options
Diffstat (limited to 'routers/repo/issue.go')
-rw-r--r-- | routers/repo/issue.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 7664d074e3..ec8fda8f7c 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -776,7 +776,7 @@ func getActionIssues(ctx *context.Context) []*models.Issue { return nil } if err = issue.LoadAttributes(); err != nil { - ctx.Handle(500, "LoadAttributes", nil) + ctx.Handle(500, "LoadAttributes", err) return nil } } |