forked from NYANDEV/forgejo
Fix panic when view issue without login
This commit is contained in:
parent
43ffacd05b
commit
4ef9494637
1 changed files with 6 additions and 4 deletions
|
@ -254,10 +254,12 @@ func ViewIssue(ctx *middleware.Context, params martini.Params) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update issue-user.
|
if ctx.IsSigned {
|
||||||
if err = models.UpdateIssueUserPairByRead(ctx.User.Id, issue.Id); err != nil {
|
// Update issue-user.
|
||||||
ctx.Handle(500, "issue.ViewIssue(UpdateIssueUserPairByRead): %v", err)
|
if err = models.UpdateIssueUserPairByRead(ctx.User.Id, issue.Id); err != nil {
|
||||||
return
|
ctx.Handle(500, "issue.ViewIssue(UpdateIssueUserPairByRead): %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get poster and Assignee.
|
// Get poster and Assignee.
|
||||||
|
|
Loading…
Reference in a new issue