diff --git a/service_youtube.go b/service_youtube.go index 04c0eed..e2fc76c 100644 --- a/service_youtube.go +++ b/service_youtube.go @@ -105,6 +105,7 @@ func (yt YouTube) NewSong(user *gumble.User, id, offset string, playlist Playlis // parseTime converts from the string youtube returns to a time.Duration func (yt YouTube) parseTime(duration, regex string) time.Duration { + fmt.Printf("parseTime(%s)", duration) var days, hours, minutes, seconds, totalSeconds int64 if duration != "" { timestampExp := regexp.MustCompile(regex)