diff --git a/internal/radio/song.go b/internal/radio/song.go index ccc70f4..4222030 100644 --- a/internal/radio/song.go +++ b/internal/radio/song.go @@ -21,7 +21,7 @@ func (s *Song) ArtistTitle() string { } func (s *Song) DurationString() string { - if s.Duration.Hours() > 0 { + if s.Duration.Hours() >= 1 { return time.UnixMilli(s.Duration.Milliseconds()).Format("15:04:05") } return time.UnixMilli(s.Duration.Milliseconds()).Format("04:05")