1
0
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:
Taloth Saldono
2020-01-12 22:26:29 +01:00
parent d8446c2d5a
commit 10dc884fa8
6 changed files with 146 additions and 13 deletions
@@ -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);