AnimeBytes Sonarr Fix (Will only fix season 1 but we don't have season info).

This commit is contained in:
Azerelat
2016-01-16 22:36:03 +00:00
parent 02a57533f9
commit ea4d0fe701
2 changed files with 19 additions and 1 deletions

View File

@@ -11,12 +11,14 @@ namespace Jackett.Models.IndexerConfig.Bespoke
{
public BoolItem IncludeRaw { get; private set; }
public DisplayItem DateWarning { get; private set; }
public BoolItem InsertSeason { get; private set; }
public ConfigurationDataAnimeBytes()
: base()
{
IncludeRaw = new BoolItem() { Name = "IncludeRaw", Value = false };
DateWarning = new DisplayItem("This tracker does not supply upload dates so they are based off year of release.") { Name = "DateWarning" };
InsertSeason = new BoolItem() { Name = "Prefix episode number with S01 for Sonarr Compatability", Value = false };
}
}
}