diff --git a/model/campaign_reports.go b/model/campaign_reports.go index 3520eb6..96cedda 100644 --- a/model/campaign_reports.go +++ b/model/campaign_reports.go @@ -9,6 +9,10 @@ import ( func (c *Campaign) PrintUserReport() { userTickets := map[string]int{} for _, ticket := range c.Tickets { + if !ticket.IsClosed() { + continue + } + user := ticket.GithubAssignee if user != "" { if count, ok := userTickets[user]; ok {