Dont always fall through on every error.

Add user agent to calls
This commit is contained in:
Mark Beamer Jr 2020-07-30 13:40:41 -04:00 committed by Alex Grintsvayg
parent c7c220ecd3
commit cd11e82676
No known key found for this signature in database
GPG key ID: AEB3F089F86A22B5

View file

@ -254,6 +254,7 @@ func run(use string, args []string, withStdErr, withStdOut bool, stopChan stop.C
}
defer pool.ReleaseIP(sourceAddress)
argsForCommand := append(args, "--source-address", sourceAddress)
argsForCommand = append(args, "--user-agent", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)")
cmd := exec.Command("youtube-dl", argsForCommand...)
logrus.Printf("Running command youtube-dl %s", strings.Join(argsForCommand, " "))