Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/ec5161e848b7946b1ce27567f6051a7d017f8806?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
36 additions and
0 deletions
@ -182,6 +182,27 @@ module.exports = Marionette.Layout.extend({
tooltip : 'Missing Only' ,
tooltip : 'Missing Only' ,
icon : 'icon-sonarr-missing' ,
icon : 'icon-sonarr-missing' ,
callback : this . _setFilter
callback : this . _setFilter
} ,
{
key : 'released' ,
title : '' ,
tooltip : 'Released' ,
icon : 'icon-sonarr-movie-released' ,
callback : this . _setFilter
} ,
{
key : 'announced' ,
title : '' ,
tooltip : 'Announced' ,
icon : 'icon-sonarr-movie-announced' ,
callback : this . _setFilter
} ,
{
key : 'cinemas' ,
title : '' ,
tooltip : 'In Cinemas' ,
icon : 'icon-sonarr-movie-cinemas' ,
callback : this . _setFilter
}
}
]
]
} ;
} ;
@ -67,6 +67,21 @@ var Collection = PageableCollection.extend({
'missing' : [
'missing' : [
'downloaded' ,
'downloaded' ,
false
false
] ,
'released' : [
null ,
null ,
function ( model ) { return model . getStatus ( ) == "released" ; }
] ,
'announced' : [
null ,
null ,
function ( model ) { return model . getStatus ( ) == "announced" ; }
] ,
'cinemas' : [
null ,
null ,
function ( model ) { return model . getStatus ( ) == "inCinemas" ; }
]
]
} ,
} ,