Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/6ca6341e0976f2da9d18326e4aea881c17ca5608 You should set ROOT_URL correctly, otherwise the web may not work correctly.

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";
}
if (!Approved && !Available)
if (Requested && !Approved && !Available)
{
return "Common.PendingApproval";
}

Loading…
Cancel
Save