Update closed issues stats for repository

This commit is contained in:
Justin Nuß 2014-07-23 13:54:46 +02:00
parent 469cbc8813
commit c850c01007
1 changed files with 6 additions and 0 deletions

View File

@ -130,6 +130,12 @@ func updateIssuesCommit(repoUserName, repoName string, commits []*base.PushCommi
return err
}
issue.Repo.NumClosedIssues++
if err = UpdateRepository(issue.Repo); err != nil {
return err
}
if err = ChangeMilestoneIssueStats(issue); err != nil {
return err
}