|
|
|
@ -41,6 +41,10 @@ namespace NzbDrone.Core.Applications.Sonarr
|
|
|
|
|
var otherSeedTime = other.Fields.FirstOrDefault(x => x.Name == "seedCriteria.seedTime")?.Value == null ? null : (int?)Convert.ToInt32(other.Fields.FirstOrDefault(x => x.Name == "seedCriteria.seedTime").Value);
|
|
|
|
|
var seedTimeCompare = seedTime == otherSeedTime;
|
|
|
|
|
|
|
|
|
|
var seasonSeedTime = Fields.FirstOrDefault(x => x.Name == "seedCriteria.seasonPackSeedTime")?.Value == null ? null : (int?)Convert.ToInt32(Fields.FirstOrDefault(x => x.Name == "seedCriteria.seasonPackSeedTime").Value);
|
|
|
|
|
var otherSeasonSeedTime = other.Fields.FirstOrDefault(x => x.Name == "seedCriteria.seasonPackSeedTime")?.Value == null ? null : (int?)Convert.ToInt32(other.Fields.FirstOrDefault(x => x.Name == "seedCriteria.seasonPackSeedTime").Value);
|
|
|
|
|
var seasonSeedTimeCompare = seasonSeedTime == otherSeasonSeedTime;
|
|
|
|
|
|
|
|
|
|
var seedRatio = Fields.FirstOrDefault(x => x.Name == "seedCriteria.seedRatio")?.Value == null ? null : (double?)Convert.ToDouble(Fields.FirstOrDefault(x => x.Name == "seedCriteria.seedRatio").Value);
|
|
|
|
|
var otherSeedRatio = other.Fields.FirstOrDefault(x => x.Name == "seedCriteria.seedRatio")?.Value == null ? null : (double?)Convert.ToDouble(other.Fields.FirstOrDefault(x => x.Name == "seedCriteria.seedRatio").Value);
|
|
|
|
|
var seedRatioCompare = seedRatio == otherSeedRatio;
|
|
|
|
@ -52,7 +56,7 @@ namespace NzbDrone.Core.Applications.Sonarr
|
|
|
|
|
other.Implementation == Implementation &&
|
|
|
|
|
other.Priority == Priority &&
|
|
|
|
|
other.Id == Id &&
|
|
|
|
|
apiKey && apiPath && baseUrl && cats && animeCats && minimumSeedersCompare && seedRatioCompare && seedTimeCompare;
|
|
|
|
|
apiKey && apiPath && baseUrl && cats && animeCats && minimumSeedersCompare && seedRatioCompare && seedTimeCompare && seasonSeedTimeCompare;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|