fix bug on migrating milestone from github (#7665)

pull/7610/head^2
Lunny Xiao 2019-07-29 23:41:22 +08:00 committed by zeripath
parent ed3d124552
commit a94ae7acb0
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ func (g *GiteaLocalUploader) CreateMilestones(milestones ...*base.Milestone) err
RepoID: g.repo.ID,
Name: milestone.Title,
Content: milestone.Description,
IsClosed: milestone.State == "close",
IsClosed: milestone.State == "closed",
DeadlineUnix: deadline,
}
if ms.IsClosed && milestone.Closed != nil {