1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00

fix: exclude zero entries

This commit is contained in:
Ferdinand Mütsch 2021-06-12 12:04:38 +02:00
parent 561198b203
commit 69627fbe11

View File

@ -163,16 +163,20 @@ func (s *Summary) FillBy(fromType uint8, toType uint8) {
break break
} }
} }
total := (totalWanted - totalActual) / time.Second // workaround
if total > 0 {
if existingEntryIdx >= 0 { if existingEntryIdx >= 0 {
(*typeItems[toType])[existingEntryIdx].Total = (totalWanted - totalActual) / time.Second // workaround (*typeItems[toType])[existingEntryIdx].Total = total
} else { } else {
*typeItems[toType] = append(*typeItems[toType], &SummaryItem{ *typeItems[toType] = append(*typeItems[toType], &SummaryItem{
Type: toType, Type: toType,
Key: key, Key: key,
Total: (totalWanted - totalActual) / time.Second, // workaround Total: total,
}) })
} }
} }
}
func (s *Summary) TotalTime() time.Duration { func (s *Summary) TotalTime() time.Duration {
var timeSum time.Duration var timeSum time.Duration