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

Specials will not be monitored by default

pull/3113/head
Mark McDowall 12 years ago
parent d607b831c9
commit e1f2b0da69

@ -111,8 +111,8 @@ namespace NzbDrone.Core.Tv
episodeToUpdate = new Episode();
newList.Add(episodeToUpdate);
//If it is Episode Zero Ignore it (specials, sneak peeks.)
if (episode.EpisodeNumber == 0 && episode.SeasonNumber != 1)
//If it is Episode Zero or Season zero ignore it
if ((episode.EpisodeNumber == 0 && episode.SeasonNumber != 1) || episode.SeasonNumber == 0)
{
episodeToUpdate.Monitored = false;
}

Loading…
Cancel
Save