mirror of
https://github.com/Radarr/Radarr
synced 2025-12-06 16:32:36 +01:00
Fix movie reference in PlexListRequestGenerator
(cherry picked from commit f47abd0d99719907c734bab0f2ef5477d2054d0d)
This commit is contained in:
parent
14f8f89634
commit
42dd575378
1 changed files with 2 additions and 2 deletions
|
|
@ -17,12 +17,12 @@ public virtual ImportListPageableRequestChain GetMovies()
|
||||||
{
|
{
|
||||||
var pageableRequests = new ImportListPageableRequestChain();
|
var pageableRequests = new ImportListPageableRequestChain();
|
||||||
|
|
||||||
pageableRequests.Add(GetMoviesRequest());
|
pageableRequests.Add(GetSeriesRequest());
|
||||||
|
|
||||||
return pageableRequests;
|
return pageableRequests;
|
||||||
}
|
}
|
||||||
|
|
||||||
private IEnumerable<ImportListRequest> GetMoviesRequest()
|
private IEnumerable<ImportListRequest> GetSeriesRequest()
|
||||||
{
|
{
|
||||||
var request = new ImportListRequest(_plexTvService.GetWatchlist(Settings.AccessToken));
|
var request = new ImportListRequest(_plexTvService.GetWatchlist(Settings.AccessToken));
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue