1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-03 22:57:18 +02:00

fix logic on PopulateFromImdbIfEmpty

This commit is contained in:
edwinbernadus 2024-03-02 18:30:27 +07:00
parent 9d5aadff1a
commit 45a42ad7a0
No known key found for this signature in database
GPG Key ID: C0CCA01F96613255

View File

@ -90,7 +90,7 @@ private List<Movie> PopulateFromImdbIfEmpty(List<Movie> searchResults, string im
}
}
return new List<Movie>();
return searchResults;
}
private IEnumerable<MovieResource> MapToResource(IEnumerable<Movie> movies)