summaryrefslogtreecommitdiffstats
path: root/models/action.go
diff options
context:
space:
mode:
author6543 <6543@obermui.de>2020-02-28 00:10:27 +0100
committerGitHub <noreply@github.com>2020-02-27 20:10:27 -0300
commite57ac841de1fc93df15ba8bef280077bbb733bf1 (patch)
treed81462a68ee6ae6276ae14ef0b3ccc7c0d77ada7 /models/action.go
parent15fbf509d3475cef3f8a7e994b59e4d78fd1c508 (diff)
downloadgitea-e57ac841de1fc93df15ba8bef280077bbb733bf1.tar.gz
gitea-e57ac841de1fc93df15ba8bef280077bbb733bf1.zip
Fix potential bugs (#10513)
* use e if it is an option * potential nil so check err first * check err first * m == nil already checked
Diffstat (limited to 'models/action.go')
-rw-r--r--models/action.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/action.go b/models/action.go
index 267a19bc62..fd49c6d4ed 100644
--- a/models/action.go
+++ b/models/action.go
@@ -213,7 +213,7 @@ func (a *Action) getCommentLink(e Engine) string {
return "#"
}
if a.Comment == nil && a.CommentID != 0 {
- a.Comment, _ = GetCommentByID(a.CommentID)
+ a.Comment, _ = getCommentByID(e, a.CommentID)
}
if a.Comment != nil {
return a.Comment.HTMLURL()