mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-14 17:22:54 -07:00
Fixed #1754
This commit is contained in:
parent
1f02c87c8c
commit
3edb4a485a
2 changed files with 10 additions and 0 deletions
|
@ -190,6 +190,15 @@ namespace Ombi.Core.Engine
|
|||
}
|
||||
request.Approved = true;
|
||||
request.Denied = false;
|
||||
|
||||
foreach (var s in request.SeasonRequests)
|
||||
{
|
||||
foreach (var ep in s.Episodes)
|
||||
{
|
||||
ep.Approved = true;
|
||||
}
|
||||
}
|
||||
|
||||
await TvRepository.UpdateChild(request);
|
||||
|
||||
if (request.Approved)
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
"Requested": "Requested",
|
||||
"Request": "Request",
|
||||
"Denied":"Denied",
|
||||
"Approve":"Approve",
|
||||
"Errors": {
|
||||
"Validation": "Please check your entered values"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue