Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/a3ade099647a5b80a54496fcf9b944b28c279521?style=unified&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
29 additions and
2 deletions
@ -37,6 +37,21 @@ module.exports = function() {
else if ( self . state . filterType === 'contains' ) {
return model . get ( self . state . filterKey ) . toLowerCase ( ) . indexOf ( self . state . filterValue . toLowerCase ( ) ) > - 1 ;
}
else if ( self . state . filterType === 'lt' ) {
return model . get ( self . state . filterKey ) < self . state . filterValue ;
}
else if ( self . state . filterType === 'gt' ) {
return model . get ( self . state . filterKey ) > self . state . filterValue ;
}
else if ( self . state . filterType === 'le' ) {
return model . get ( self . state . filterKey ) <= self . state . filterValue ;
}
else if ( self . state . filterType === 'ge' ) {
return model . get ( self . state . filterKey ) >= self . state . filterValue ;
}
else if ( self . state . filterType === 'ne' ) {
return model . get ( self . state . filterKey ) !== self . state . filterValue ;
}
else {
return model . get ( self . state . filterKey ) === self . state . filterValue ;
}
@ -194,6 +194,13 @@ module.exports = Marionette.Layout.extend({
tooltip : 'Ended Only' ,
icon : 'icon-sonarr-series-ended' ,
callback : this . _setFilter
} ,
{
key : 'missing' ,
title : '' ,
tooltip : 'Missing' ,
icon : 'icon-sonarr-missing' ,
callback : this . _setFilter
}
]
} ;
@ -63,6 +63,11 @@ var Collection = PageableCollection.extend({
'monitored' : [
'monitored' ,
true
] ,
'missing' : [
'percentOfEpisodes' ,
100 ,
'lt'
]
} ,