diff --git a/NzbDrone.Core/MetadataSource/TraktProxy.cs b/NzbDrone.Core/MetadataSource/TraktProxy.cs index 1730f777d..951c38772 100644 --- a/NzbDrone.Core/MetadataSource/TraktProxy.cs +++ b/NzbDrone.Core/MetadataSource/TraktProxy.cs @@ -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; diff --git a/UI/AddSeries/addSeries.css b/UI/AddSeries/addSeries.css index 5f92227af..e34dc7403 100644 --- a/UI/AddSeries/addSeries.css +++ b/UI/AddSeries/addSeries.css @@ -64,4 +64,9 @@ .folder-name-matches { padding-left: 20px; padding-top: 10px; +} + +.img-polaroid { + min-width: 138px; + min-height: 203px; } \ No newline at end of file