This commit is contained in:
Matt Burchett 2018-11-20 14:28:37 -06:00
parent cbafaa5781
commit 0a8b11e154

View File

@ -75,12 +75,16 @@ func LookupTVFileLocation(config config.Config, ids []int) []string {
xml.Unmarshal(body, &plexModel)
plexTV := plexModel.Video
results := make([]string, 0)
for _, i := range plexTV {
f := i.Media.Part.File
if _, ok := m[f]; !ok {
m[f] = true
fileList = append(fileList, filepath.Dir(filepath.Dir(i.Media.Part.File)))
fileList = append(fileList, filepath.Dir(filepath.Dir(i.Media.Part.File)))
}
for _, r := range fileList {
if _, ok := m[r]; !ok {
m[r] = true
results = append(results, r)
}
}