mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 05:13:18 -07:00
fix: Display blank status for episodes not requested
This commit is contained in:
commit
6ca6341e09
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ namespace Ombi.Store.Repository.Requests
|
||||||
return "Common.ProcessingRequest";
|
return "Common.ProcessingRequest";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!Approved && !Available)
|
if (Requested && !Approved && !Available)
|
||||||
{
|
{
|
||||||
return "Common.PendingApproval";
|
return "Common.PendingApproval";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue