Fix issue #280. Update milestone counter when creating an issue

This commit is contained in:
Justin Nuß 2014-07-22 13:50:34 +02:00
parent 18718afb36
commit ec26b78d3c
1 changed files with 11 additions and 1 deletions

View File

@ -108,7 +108,17 @@ func NewIssue(issue *Issue) (err error) {
sess.Rollback()
return err
}
return sess.Commit()
if err = sess.Commit(); err != nil {
return err
}
if issue.MilestoneId > 0 {
// FIXES(280): Update milestone counter.
return ChangeMilestoneAssign(0, issue.MilestoneId, issue)
}
return
}
// GetIssueByIndex returns issue by given index in repository.