Fix bug when submitting requests for multiple episodes accross multiple seasons

pull/2467/head
Kenton Royal 6 years ago
parent b7e5e3dfb4
commit 0b620e9ad4

@ -81,7 +81,7 @@ namespace Ombi.Core.Rule.Rules.Request
// Get the count of requests to be made
foreach (var s in child.SeasonRequests)
{
requestCount = s.Episodes.Count;
requestCount += s.Episodes.Count;
}
var tvLogs = requestLog.Where(x => x.RequestType == RequestType.TvShow);

Loading…
Cancel
Save