Update server/events/vcs/proxy.go

Co-Authored-By: Luke Kysow <1034429+lkysow@users.noreply.github.com>
This commit is contained in:
Sam Park
2020-01-21 14:12:54 -08:00
parent 815e91be36
commit 68d2bd9ff0

View File

@@ -61,7 +61,7 @@ func (d *ClientProxy) CreateComment(repo models.Repo, pullNum int, comment strin
}
func (d *ClientProxy) HideOldComments(repo models.Repo, pullNum int) error {
return nil
return d.clients[repo.VCSHost.Type].HideOldComments(repo, pullNum)
}
func (d *ClientProxy) PullIsApproved(repo models.Repo, pull models.PullRequest) (bool, error) {