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 bba80e3005 - Show all commits

View File

@ -81,7 +81,8 @@ func LookupTVFileLocation(config config.Config, ids []int) []string {
} }
for _, v := range fileList { for _, v := range fileList {
if !isValueInList(v, fileList) { bool := isValueInList(v, fileList)
if !bool {
results = append(results, v) results = append(results, v)
} }
} }