handle reopened issues like opened ones
This commit is contained in:
parent
4337b2837d
commit
fc2ed32387
3
data.go
3
data.go
@ -193,7 +193,8 @@ func (d *Data) getIssues() {
|
||||
issue.Children = append(issue.Children, ch.Issue)
|
||||
}
|
||||
}
|
||||
if issue.Resolution.Name == "open" &&
|
||||
if (issue.Resolution.Name == "open" ||
|
||||
issue.Resolution.Name == "reopened") &&
|
||||
strings.Compare(d.minimumVersion, issue.TargetVersion.Name) < 0 {
|
||||
open++
|
||||
if issue.Severity.Name == "feature" {
|
||||
|
Loading…
Reference in New Issue
Block a user