Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/ab28b50c7ea164e182a71484b2e5ae74f219423c
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
20 additions and
22 deletions
@ -4,15 +4,15 @@
< title > NzbDrone< / title >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" / >
< link href = "/Content/Bootstrap.css" rel = 'stylesheet' type = 'text/css' / >
< link href = "/Content/bootstrap.toggle-switch.css" rel = 'stylesheet' type = 'text/css' / >
< link href = "/Content/Messenger/messenger.css" rel = 'stylesheet' type = 'text/css' / >
< link href = "/Content/Messenger/messenger.future.css" rel = 'stylesheet' type = 'text/css' / >
< link href = "/Cells/Cells.css" rel = 'stylesheet' type = 'text/css' >
< link href = "/Content/fullcalendar.css" rel = 'stylesheet' type = 'text/css' >
< link href = "/Content/base.css" rel = 'stylesheet' type = 'text/css' / >
< link href = "/Content/bootstrap.toggle-switch.css" rel = 'stylesheet' type = 'text/css' / >
< link href = "/AddSeries/Addseries.css" rel = 'stylesheet' type = 'text/css' / >
< link href = "/Cells/Cells.css" rel = 'stylesheet' type = 'text/css' >
< link href = "/Series/Series.css" rel = 'stylesheet' type = 'text/css' / >
< link href = "/settings/settings.css" rel = 'stylesheet' type = 'text/css' / >
< link href = "/Settings/settings.css" rel = 'stylesheet' type = 'text/css' / >
< link href = "/AddSeries/Addseries.css" rel = 'stylesheet' type = 'text/css' / >
< link href = "/Calendar/calendar.css" rel = 'stylesheet' type = 'text/css' / >
< / head >
< body >
@ -1,4 +1,4 @@
'use strict' ;
'use strict' ;
require (
[
'app' ,
@ -11,20 +11,19 @@ require(
controller : new Controller ( ) ,
appRoutes : {
'' : 'series' ,
'series' : 'series' ,
'series/index' : 'series' ,
'series/add' : 'addSeries' ,
'series/add/:action(/:query)' : 'addSeries' ,
'series/details/:query' : 'seriesDetails' ,
'calendar' : 'calendar' ,
'settings' : 'settings' ,
'settings/:action(/:query)' : 'settings' ,
'missing' : 'missing' ,
'history' : 'history' ,
'logs' : 'logs' ,
'rss' : 'rss' ,
':whatever' : 'notFound'
'' : 'series' ,
'series' : 'series' ,
'addseries' : 'addSeries' ,
'addseries/:action(/:query)' : 'addSeries' ,
'series/:query' : 'seriesDetails' ,
'calendar' : 'calendar' ,
'settings' : 'settings' ,
'settings/:action(/:query)' : 'settings' ,
'missing' : 'missing' ,
'history' : 'history' ,
'logs' : 'logs' ,
'rss' : 'rss' ,
':whatever' : 'notFound'
}
} ) ;
@ -36,7 +35,6 @@ require(
RouterBinder . bind ( App . Router ) ;
} ) ;
return App . Router ;
} ) ;
@ -80,7 +80,7 @@ define(
{
title : 'Add Series' ,
icon : 'icon-plus' ,
route : ' series/add '
route : ' add series'
} ,
{
title : 'RSS Sync' ,
@ -53,7 +53,7 @@ define(
return this . get ( 'status' ) === 'continuing' ;
} ,
route : function ( ) {
return '/series/ details/ ' + this . get ( 'titleSlug' ) ;
return '/series/ ' + this . get ( 'titleSlug' ) ;
//return '/series/details/' + this.get('id');
} ,