Compare commits

..

No commits in common. "master" and "v0.0.2" have entirely different histories.

1 changed files with 0 additions and 5 deletions

View File

@ -110,12 +110,7 @@ func (repo *CommentRepository) ListComments(ctx context.Context, req repository.
filter := bson.M{} filter := bson.M{}
if req.ParentID != nil { if req.ParentID != nil {
filter["parent_comment_id"] = req.ParentID filter["parent_comment_id"] = req.ParentID
} else {
filter["parent_comment_id"] = bson.M{
"$in": []interface{}{"", nil},
}
} }
if req.ReferenceID != nil { if req.ReferenceID != nil {
filter["reference_id"] = req.ReferenceID filter["reference_id"] = req.ReferenceID
} }