Prevent xorm nil insert in Review.Comments (#11150)

This commit is contained in:
6543 2020-04-20 05:04:08 +02:00 committed by GitHub
parent e37e217602
commit 77171abcad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -457,8 +457,10 @@ func InsertReviews(reviews []*Review) error {
c.ReviewID = review.ID
}
if _, err := sess.NoAutoTime().Insert(review.Comments); err != nil {
return err
if len(review.Comments) > 0 {
if _, err := sess.NoAutoTime().Insert(review.Comments); err != nil {
return err
}
}
}