Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/28d4010c5c6b833e7981091aaee3022484a19449 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Return poster placeholder url when trakt doesn't have one

pull/23/head
Mark McDowall 12 years ago
parent 900122c265
commit 28d4010c5c

@ -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;

@ -64,4 +64,9 @@
.folder-name-matches {
padding-left: 20px;
padding-top: 10px;
}
.img-polaroid {
min-width: 138px;
min-height: 203px;
}
Loading…
Cancel
Save