Skip to content

Commit

Permalink
Fix file globs array length
Browse files Browse the repository at this point in the history
  • Loading branch information
CameronRP committed Oct 3, 2024
1 parent cc9684c commit 2e09414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/thermal-uploader/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const (

var log = logging.NewLogger("info")
var version = "No version provided"
var globs = [5]string{"*.cptv", "*.avi", "*.mp4", "*.aac"}
var globs = [4]string{"*.cptv", "*.avi", "*.mp4", "*.aac"}

type Args struct {
ConfigDir string `arg:"-c,--config" help:"path to configuration directory"`
Expand Down

0 comments on commit 2e09414

Please sign in to comment.