mirror of https://github.com/Radarr/Radarr
Don't try to download small version of non-existing poster
This commit is contained in:
parent
6a743a8792
commit
ac4f2d5e9a
|
@ -187,7 +187,7 @@ namespace NzbDrone.Core.MetadataSource
|
||||||
|
|
||||||
private static string GetPosterThumbnailUrl(string posterUrl)
|
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 extension = Path.GetExtension(posterUrl);
|
||||||
var withoutExtension = posterUrl.Substring(0, posterUrl.Length - extension.Length);
|
var withoutExtension = posterUrl.Substring(0, posterUrl.Length - extension.Length);
|
||||||
|
|
Loading…
Reference in New Issue