Add Dev flag to disable file presence verification

This commit is contained in:
Deluan 2020-01-11 01:38:40 -05:00 committed by Deluan Quintão
parent 57390fcda3
commit a4a8360a94
2 changed files with 13 additions and 2 deletions

View file

@ -23,6 +23,9 @@ type sonic struct {
DownsampleCommand string `default:"ffmpeg -i %s -map 0:0 -b:a %bk -v 0 -f mp3 -"`
PlsIgnoreFolders bool `default:"true"`
PlsIgnoredPatterns string `default:"^iCloud;\\~"`
// DevFlags
DevDisableFileCheck bool `default:"false"`
}
var Sonic *sonic