Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/e37f413e19b188713f9aa865512ed3d7769fd0ae
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
9 additions and
10 deletions
@ -3,8 +3,11 @@ define(['app', 'Series/EpisodeModel'], function () {
NzbDrone . Calendar . CalendarCollection = Backbone . Collection . extend ( {
url : NzbDrone . Constants . ApiRoot + '/calendar' ,
model : NzbDrone . Series . EpisodeModel ,
comparator : function ( model ) {
return model . get ( 'airDate' ) ;
comparator : function ( model ) {
var date = new Date ( model . get ( 'airDate' ) ) ;
var time = date . getTime ( ) ;
return time ;
}
} ) ;
} ) ;
@ -4,17 +4,13 @@ define(['app', 'Series/SeriesModel'], function () {
url : NzbDrone . Constants . ApiRoot + '/series' ,
model : NzbDrone . Series . SeriesModel ,
mode : 'client' ,
comparator : function ( model ) {
return model . get ( 'title' ) ;
} ,
state : {
sortKey : "title" ,
order : - 1 ,
pageSize : 1000000
} ,
queryParams : {
sortKey : null ,
order : null
order : - 1
}
} ) ;
} ) ;