Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/a715b953cb0e4e0b0f9aa2697d7f09507b0aa87e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
12 additions and
12 deletions
@ -1,14 +1,5 @@
'use strict' ;
( function ( ) {
window . console = window . console || { } ;
window . console . log = window . console . log || function ( ) { } ;
window . console . group = window . console . group || function ( ) { } ;
window . console . groupEnd = window . console . groupEnd || function ( ) { } ;
window . console . debug = window . console . debug || function ( ) { } ;
window . console . warn = window . console . warn || function ( ) { } ;
window . console . assert = window . console . assert || function ( ) { } ;
window . alert = function ( message ) {
window . Messenger ( ) . post ( message ) ;
} ;
@ -36,8 +36,7 @@ require.config({
init : function ( ) {
require (
[
'jQuery/ToTheTop' ,
'Instrumentation/ErrorHandler'
'jQuery/ToTheTop'
] ) ;
}
@ -63,6 +63,7 @@
< script src = "/polyfills.js" > < / script >
< script src = "/JsLibraries/jquery.js" > < / script >
< script src = "/JsLibraries/messenger.js" > < / script >
< script src = "/Instrumentation/ErrorHandler.js" > < / script >
< script src = "/ServerStatus.js" > < / script >
< script data-main = "/app" src = "/JsLibraries/require.js" > < / script >
@ -1,3 +1,12 @@
window . console = window . console || { } ;
window . console . log = window . console . log || function ( ) { } ;
window . console . group = window . console . group || function ( ) { } ;
window . console . groupEnd = window . console . groupEnd || function ( ) { } ;
window . console . debug = window . console . debug || function ( ) { } ;
window . console . warn = window . console . warn || function ( ) { } ;
window . console . assert = window . console . assert || function ( ) { } ;
if ( ! String . prototype . startsWith ) {
Object . defineProperty ( String . prototype , 'startsWith' , {
enumerable : false ,
@ -29,4 +38,4 @@ if(!('contains' in String.prototype))
String . prototype . contains = function ( str , startIndex ) {
return - 1 !== String . prototype . indexOf . call ( this , str , startIndex ) ;
} ;
}
}