mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-13 08:42:57 -07:00
Fix bug when submitting requests for multiple episodes accross multiple seasons
This commit is contained in:
parent
b7e5e3dfb4
commit
0b620e9ad4
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ namespace Ombi.Core.Rule.Rules.Request
|
||||||
// Get the count of requests to be made
|
// Get the count of requests to be made
|
||||||
foreach (var s in child.SeasonRequests)
|
foreach (var s in child.SeasonRequests)
|
||||||
{
|
{
|
||||||
requestCount = s.Episodes.Count;
|
requestCount += s.Episodes.Count;
|
||||||
}
|
}
|
||||||
|
|
||||||
var tvLogs = requestLog.Where(x => x.RequestType == RequestType.TvShow);
|
var tvLogs = requestLog.Where(x => x.RequestType == RequestType.TvShow);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue