mirror of
https://github.com/go-gitea/gitea
synced 2024-11-17 15:44:25 +00:00
Fix panic when view issue without login
This commit is contained in:
parent
43ffacd05b
commit
4ef9494637
@ -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…
Reference in New Issue
Block a user