fix: Display blank status for episodes not requested

This commit is contained in:
Jamie 2022-03-24 19:14:50 +00:00 committed by GitHub
commit 6ca6341e09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";
} }