Skip to content

Commit

Permalink
fix: correct default tick_time
Browse files Browse the repository at this point in the history
  • Loading branch information
biodrone committed Aug 19, 2022
1 parent 5de7e6e commit 924fcb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion streamdl.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 924fcb1

Please sign in to comment.