aboutsummaryrefslogtreecommitdiffstats
path: root/models/issue_comment_list.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/issue_comment_list.go')
-rw-r--r--models/issue_comment_list.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/models/issue_comment_list.go b/models/issue_comment_list.go
index ae2a89a01a..f8739e32a6 100644
--- a/models/issue_comment_list.go
+++ b/models/issue_comment_list.go
@@ -376,6 +376,11 @@ func (comments CommentList) loadDependentIssues(e Engine) error {
for _, comment := range comments {
if comment.DependentIssue == nil {
comment.DependentIssue = issues[comment.DependentIssueID]
+ if comment.DependentIssue != nil {
+ if err := comment.DependentIssue.loadRepo(e); err != nil {
+ return err
+ }
+ }
}
}
return nil