twitch-bot/helpers.go
Knut Ahlers 6d358b307f
Apply time-fix, json is not able to decode 2s but 2 which is ns
instead of s

Signed-off-by: Knut Ahlers <knut@ahlers.me>
2021-06-17 18:08:52 +02:00

12 lines
148 B
Go

package main
import "time"
func fixDurationValue(d time.Duration) time.Duration {
if d >= time.Second {
return d
}
return d * time.Second
}