This commit is contained in:
Matt Burchett 2018-11-20 14:16:38 -06:00
parent 8330101154
commit bba80e3005

View File

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