Browse Source

Fix panic when view issue without login

pull/169/merge
Unknown 11 years ago
parent
commit
4ef9494637
  1. 2
      routers/repo/issue.go

2
routers/repo/issue.go

@ -254,11 +254,13 @@ func ViewIssue(ctx *middleware.Context, params martini.Params) {
} }
} }
if ctx.IsSigned {
// Update issue-user. // Update issue-user.
if err = models.UpdateIssueUserPairByRead(ctx.User.Id, issue.Id); err != nil { if err = models.UpdateIssueUserPairByRead(ctx.User.Id, issue.Id); err != nil {
ctx.Handle(500, "issue.ViewIssue(UpdateIssueUserPairByRead): %v", err) ctx.Handle(500, "issue.ViewIssue(UpdateIssueUserPairByRead): %v", err)
return return
} }
}
// Get poster and Assignee. // Get poster and Assignee.
if err = issue.GetPoster(); err != nil { if err = issue.GetPoster(); err != nil {

Loading…
Cancel
Save