Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/3411c4e5a7efbda342171da65b4b133e87550114?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
4 deletions
@ -34,11 +34,8 @@ define(
var substringMatcher = function ( ) {
var substringMatcher = function ( ) {
return function findMatches ( q , cb ) {
return function findMatches ( q , cb ) {
// regex used to determine if a string contains the substring `q`
var substrRegex = new RegExp ( q , 'i' ) ;
var matches = _ . select ( SeriesCollection . toJSON ( ) , function ( series ) {
var matches = _ . select ( SeriesCollection . toJSON ( ) , function ( series ) {
return s ubstrRegex. test ( series . title ) ;
return series . title . toLowerCase ( ) . indexOf ( q . toLowerCase ( ) ) > - 1 ;
} ) ;
} ) ;
cb ( matches ) ;
cb ( matches ) ;
@ -21,6 +21,10 @@ define(
var icon = this . find ( 'i' ) . andSelf ( 'i' ) ;
var icon = this . find ( 'i' ) . andSelf ( 'i' ) ;
if ( ! icon || ! icon . attr ( 'class' ) ) {
return this ;
}
var iconClasses = icon . attr ( 'class' ) . match ( /(?:^|\s)icon\-.+?(?:$|\s)/ ) ;
var iconClasses = icon . attr ( 'class' ) . match ( /(?:^|\s)icon\-.+?(?:$|\s)/ ) ;
if ( iconClasses . length === 0 ) {
if ( iconClasses . length === 0 ) {