TV Show Fix #6

Merged
mattburchett merged 17 commits from matt/#2 into master 2018-11-20 23:08:30 +00:00
Showing only changes of commit 7c2af867b0 - Show all commits

View File

@ -77,7 +77,9 @@ func LookupTVFileLocation(config config.Config, ids []int) []string {
plexTV := plexModel.Video
for _, i := range plexTV {
if !sliceutil.Contains(fileList, i.Media.Part.File) {
if sliceutil.Contains(fileList, i.Media.Part.File) {
fmt.Println("Already exists.")
} else {
fileList = append(fileList, filepath.Dir(filepath.Dir(i.Media.Part.File)))
}
}