Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/src/commit/08fc8db74b564e9f0b1ff7b72618bc3941cca88d/PlexRequests.UI/Views/ApiDocs/o2c.html You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/PlexRequests.UI/Views/ApiDocs/o2c.html

20 lines
449 B

<script>
var qp = null;
if(window.location.hash) {
qp = location.hash.substring(1);
}
else {
qp = location.search.substring(1);
}
qp = qp ? JSON.parse('{"' + qp.replace(/&/g, '","').replace(/=/g,'":"') + '"}',
function(key, value) {
return key===""?value:decodeURIComponent(value) }
):{}
if (window.opener.swaggerUi.tokenUrl)
window.opener.processOAuthCode(qp);
else
window.opener.onOAuthComplete(qp);
window.close();
</script>