fix: Display blank status for episodes not requested

pull/4565/head
Jamie 3 years ago committed by GitHub
commit 6ca6341e09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save