Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/41dfb677e7db98fe38b55087a85eec7265829384
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
29 additions and
2 deletions
@ -93,6 +93,33 @@ export const defaultState = {
// Default to false
return false ;
} ,
rejectionCount : function ( item , value , type ) {
const rejectionCount = item . rejections . length ;
switch ( type ) {
case filterTypes . EQUAL :
return rejectionCount === value ;
case filterTypes . GREATER _THAN :
return rejectionCount > value ;
case filterTypes . GREATER _THAN _OR _EQUAL :
return rejectionCount >= value ;
case filterTypes . LESS _THAN :
return rejectionCount < value ;
case filterTypes . LESS _THAN _OR _EQUAL :
return rejectionCount <= value ;
case filterTypes . NOT _EQUAL :
return rejectionCount !== value ;
default :
return false ;
}
}
} ,
@ -141,8 +168,8 @@ export const defaultState = {
valueType : filterBuilderValueTypes . QUALITY
} ,
{
name : 'rejection s ',
label : 'Rejection s ',
name : 'rejection Count ',
label : 'Rejection Count ',
type : filterBuilderTypes . NUMBER
}
] ,