diff --git a/pkg/eraser/eraser.go b/pkg/eraser/eraser.go index 9f2c335..126e8da 100644 --- a/pkg/eraser/eraser.go +++ b/pkg/eraser/eraser.go @@ -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) } }