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

Debug log when we're doubling the allowed size for a possible special

pull/4/head
Mark McDowall 11 years ago
parent a46b542bfd
commit 709f96920d

@ -85,6 +85,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
//or is the last episode in a season that has 10 or more episodes
if (seasonEpisodes.First().Id == episode.Id || (seasonEpisodes.Count() >= 10 && seasonEpisodes.Last().Id == episode.Id))
{
_logger.Debug("Possible double episode, doubling allowed size.");
maxSize = maxSize * 2;
}
}

Loading…
Cancel
Save