This commit is contained in:
Matt Burchett 2018-11-20 14:05:51 -06:00
parent 91c2214082
commit 8997e6ae1a

View File

@ -8,6 +8,7 @@ import (
"net/http"
"os"
"path/filepath"
"sort"
"git.linuxrocker.com/mattburchett/Housekeeper/pkg/config"
"git.linuxrocker.com/mattburchett/Housekeeper/pkg/model"
@ -76,9 +77,12 @@ func LookupTVFileLocation(config config.Config, ids []int) []string {
plexTV := plexModel.Video
for _, i := range plexTV {
count := sort.SearchStrings(fileList, i.Media.Part.File)
if count == 0 {
fileList = append(fileList, filepath.Dir(filepath.Dir(i.Media.Part.File)))
}
}
}
return fileList
}