1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00

Fixed: Images for some series not downloading

Closes #5376
This commit is contained in:
Mark McDowall
2023-01-15 20:09:34 -08:00
parent c08b451564
commit b848100693
11 changed files with 41 additions and 25 deletions
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using FluentAssertions;
@@ -102,7 +102,7 @@ namespace NzbDrone.Core.Test.MetadataSource.SkyHook
episode.AirDateUtc.Value.Kind.Should().Be(DateTimeKind.Utc);
}
episode.Images.Any(i => i.CoverType == MediaCoverTypes.Screenshot && i.Url.Contains("-940."))
episode.Images.Any(i => i.CoverType == MediaCoverTypes.Screenshot && i.RemoteUrl.Contains("-940."))
.Should()
.BeFalse();
}