From 924fcb184fa81ad3a64a3aceb221161302246d29 Mon Sep 17 00:00:00 2001 From: Josh Jacobs Date: Fri, 19 Aug 2022 12:34:56 +0100 Subject: [PATCH] fix: correct default tick_time --- streamdl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streamdl.go b/streamdl.go index 74792cdc..be672162 100644 --- a/streamdl.go +++ b/streamdl.go @@ -19,7 +19,7 @@ func main() { confLoc := flag.String("config", "config.yml", "Location of config file (full path inc filename)") outLoc := flag.String("out", "", "Location of output file (folder only, trailing slash)") moveLoc := flag.String("move", "", "Location of move file (folder only, trailing slash)") - tickTime := flag.Int("time", 5, "Time to tick (seconds)") + tickTime := flag.Int("time", 10, "Time to tick (seconds)") subfolder := flag.Bool("subfolder", false, "Add streams to a subfolder with the channel name") flag.Parse()