TV Show Fix #6

Merged
mattburchett merged 17 commits from matt/#2 into master 2018-11-20 23:08:30 +00:00
Showing only changes of commit 91c2214082 - Show all commits

View File

@ -50,7 +50,7 @@ func LookupTVFileLocation(config config.Config, ids []int) []string {
fileList := make([]string, 0) fileList := make([]string, 0)
for _, i := range ids { for _, i := range ids {
plexURL := fmt.Sprintf("%s:%d%s%d%s%s", config.PlexHost, config.PlexPort, "/library/metadata/", i, "/?X-Plex-Token=", config.PlexToken) plexURL := fmt.Sprintf("%s:%d%s%d%s%s", config.PlexHost, config.PlexPort, "/library/metadata/", i, "/allLeaves/?X-Plex-Token=", config.PlexToken)
req, err := http.NewRequest(http.MethodGet, plexURL, nil) req, err := http.NewRequest(http.MethodGet, plexURL, nil)