mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-24 22:36:19 -04:00
Fixed: Posters not always showing when searching for new shows
This commit is contained in:
@@ -100,7 +100,7 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
|
||||
|
||||
var httpResponse = _httpClient.Get<List<ShowResource>>(httpRequest);
|
||||
|
||||
return httpResponse.Resource.SelectList(MapSearhResult);
|
||||
return httpResponse.Resource.SelectList(MapSearchResult);
|
||||
}
|
||||
catch (HttpException)
|
||||
{
|
||||
@@ -113,7 +113,7 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
|
||||
}
|
||||
}
|
||||
|
||||
private Series MapSearhResult(ShowResource show)
|
||||
private Series MapSearchResult(ShowResource show)
|
||||
{
|
||||
var series = _seriesService.FindByTvdbId(show.TvdbId);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user