Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/1f7b03d3213518ee90a7b2290e2a6bdba97599fb
You should set ROOT_URL correctly, otherwise the web may not work correctly.
6 changed files with
12 additions and
11 deletions
@ -1,7 +1,7 @@
{
"name" : " Son arr",
"name" : " Rad arr",
"version" : "2.0.0" ,
"description" : " Son arr",
"description" : " Rad arr",
"main" : "main.js" ,
"scripts" : {
"build" : "gulp build" ,
@ -9,7 +9,7 @@
} ,
"repository" : {
"type" : "git" ,
"url" : "git://github.com/ Sonarr/Son arr.git"
"url" : "git://github.com/ Radarr/Rad arr.git"
} ,
"author" : "" ,
"license" : "GPL-3.0" ,
@ -14,6 +14,7 @@
"define": true,
"window": true,
"document": true,
"console": true
"console": true,
"_": true
}
}
@ -79,7 +79,7 @@ module.exports = Marionette.Layout.extend({
if ( options . action === "search" ) {
this . search ( { term : options . query } ) ;
} else if ( options . action == "discover" ) {
} else if ( options . action == = "discover" ) {
this . isDiscover = true ;
}
@ -254,7 +254,7 @@ module.exports = Marionette.Layout.extend({
_discover : function ( action ) {
if ( this . collection . action === action ) {
return
return ;
}
if ( this . collection . specialProperty === "special" ) {
@ -39,14 +39,14 @@ module.exports = Backgrid.Cell.extend({
break ;
case "PTP_Approved" :
addon = "✔" ;
title = "Approved by PTP"
title = "Approved by PTP" ;
break ;
case "HDB_Internal" :
addon = "⭐️" ;
title = "HDBits Internal" ;
break ;
}
if ( addon != "" ) {
if ( addon != = "" ) {
html += "<span title='{0}'>{1}</span> " . format ( title , addon ) ;
}
} ) ;
@ -23,7 +23,7 @@ var view = Marionette.ItemView.extend({
initialize : function ( ) {
this . model . set ( 'profiles' , Profiles ) ;
var pathState = this . model . get ( "pathState" ) ;
if ( pathState == "static" ) {
if ( pathState == = "static" ) {
this . model . set ( "pathState" , true ) ;
} else {
this . model . set ( "pathState" , false ) ;
@ -43,11 +43,11 @@ var view = Marionette.ItemView.extend({
onRender : function ( ) {
var rootFolder = this . model . get ( "rootFolderPath" ) ;
if ( rootFolder != "" ) {
if ( rootFolder != = "" ) {
//this.ui.rootFolder.val(rootFolder);
this . ui . rootFolder . children ( ) . filter ( function ( ) {
//may want to use $.trim in here
return $ ( this ) . text ( ) == rootFolder ;
return $ ( this ) . text ( ) == = rootFolder ;
} ) . attr ( 'selected' , true ) ;
} else {
var defaultRoot = Config . getValue ( Config . Keys . DefaultRootFolderId ) ;