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

Don't try to download small version of non-existing poster

pull/124/head
Keivan Beigi 11 years ago
parent 6a743a8792
commit ac4f2d5e9a

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

Loading…
Cancel
Save