Return poster placeholder url when trakt doesn't have one

This commit is contained in:
Mark McDowall 2013-04-05 17:12:50 -07:00
commit 28d4010c5c
2 changed files with 7 additions and 0 deletions

View file

@ -82,6 +82,8 @@ namespace NzbDrone.Core.MetadataSource
private static string GetPosterThumbnailUrl(string posterUrl)
{
if(posterUrl.Contains("poster-small.jpg")) return posterUrl;
var extension = Path.GetExtension(posterUrl);
var withoutExtension = posterUrl.Substring(0, posterUrl.Length - extension.Length);
return withoutExtension + "-138" + extension;