mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Display blank status for episodes not requested
Fixes Non requested series have a Pending Approval status #4553
This commit is contained in:
parent
421754a0ae
commit
55c2e77a30
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ namespace Ombi.Store.Repository.Requests
|
|||
return "Common.ProcessingRequest";
|
||||
}
|
||||
|
||||
if (!Approved && !Available)
|
||||
if (Requested && !Approved && !Available)
|
||||
{
|
||||
return "Common.PendingApproval";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue