Hide outdated comments in file view (#5017)

* Hide outdated comments in file view

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Add unit test by adding "invalidated" comment to fixtures

Signed-off-by: Jonas Franz <info@jonasfranz.software>
This commit is contained in:
Jonas Franz
2018-10-05 17:49:30 +02:00
committed by techknowlogick
parent d7ca839c67
commit 94cd7bb25b
2 changed files with 12 additions and 1 deletions

View File

@ -1084,7 +1084,7 @@ func fetchCodeCommentsByReview(e Engine, issue *Issue, currentUser *User, review
}
conds := opts.toConds()
if review.ID == 0 {
conds.And(builder.Eq{"invalidated": false})
conds = conds.And(builder.Eq{"invalidated": false})
}
var comments []*Comment