Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/a2095f6f29c2d405426636570e07a39598a40bc4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
10 additions and
10 deletions
@ -1,5 +1,4 @@
define (
[
define ( [
'jquery' ,
'messenger'
] , function ( $ , Messenger ) {
@ -29,10 +28,10 @@
var messageText = filename + ' : ' + line + '</br>' + msg ;
var message = {
message : messageText ,
type : 'error' ,
hideAfter : 1000 ,
showCloseButton : true
message : messageText ,
type : 'error' ,
hideAfter : 1000 ,
showCloseButton : true
} ;
new Messenger ( ) . post ( message ) ;
@ -62,9 +61,9 @@
}
var message = {
type : 'error' ,
hideAfter : 1000 ,
showCloseButton : true
type : 'error' ,
hideAfter : 1000 ,
showCloseButton : true
} ;
if ( xmlHttpRequest . status === 0 && xmlHttpRequest . readyState === 0 ) {
@ -4,7 +4,8 @@ String.prototype.format = function () {
return this . replace ( /{(\d+)}/g , function ( match , number ) {
if ( typeof args [ number ] !== 'undefined' ) {
return args [ number ] ;
} else {
}
else {
return match ;
}
} ) ;