Browse Source

add file forgotten in last commit.

main
Gisle Aune 3 years ago
parent
commit
02a251166f
  1. 4
      services/loader.go

4
services/loader.go

@ -555,7 +555,9 @@ func (l *Loader) populateGoals(ctx context.Context, goal *models.Goal) (*models.
item.CompletedAmount += amount
if goal.Unweighted {
result.CompletedAmount += amount
if item.GroupWeight > 0 {
result.CompletedAmount += amount
}
} else {
result.CompletedAmount += amount * item.GroupWeight
}

Loading…
Cancel
Save