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

Fixed an issue with XemMappings and single episode searching

pull/4/head
Mark McDowall 12 years ago committed by kay.one
parent 721dc90613
commit 6e3a4828cd

@ -38,7 +38,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications.Search
return false;
}
if (!remoteEpisode.Episodes.Select(c => c.EpisodeNumber).Contains(singleEpisodeSpec.EpisodeNumber))
if (!remoteEpisode.ParsedEpisodeInfo.EpisodeNumbers.Contains(singleEpisodeSpec.EpisodeNumber))
{
_logger.Trace("Episode number does not match searched episode number, skipping.");
return false;

Loading…
Cancel
Save