diff --git a/pkg/eraser/eraser.go b/pkg/eraser/eraser.go index 126e8da..01b4d38 100644 --- a/pkg/eraser/eraser.go +++ b/pkg/eraser/eraser.go @@ -81,8 +81,8 @@ func LookupTVFileLocation(config config.Config, ids []int) []string { } for _, v := range fileList { - bool := isValueInList(v, fileList) - if !bool { + boolean := isValueInList(v, fileList) + if !boolean { results = append(results, v) } }