Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/0628b3dc2d05daec779c4d7e10801c4c3a546638
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
10 additions and
2 deletions
@ -35,7 +35,7 @@ define(
var includeSeriesTitle = standardFormat . match ( /\{Series[-_. ]Title\}/i ) ;
var includeEpisodeTitle = standardFormat . match ( /\{Episode[-_. ]Title\}/i ) ;
var includeQuality = standardFormat . match ( /\{Quality[-_. ]Title\}/i ) ;
var numberStyle = standardFormat . match ( /s?\{season(?:\:0 0)?\}[ex]\{episode(?:\:00 )?\}/i) ;
var numberStyle = standardFormat . match ( /s?\{season(?:\:0 +)?\}[ex]\{episode(?:\:0+ )?\}/i) ;
var replaceSpaces = standardFormat . indexOf ( ' ' ) === - 1 ;
var separator = standardFormat . match ( /\}( - |\.-\.|\.| )|( - |\.-\.|\.| )\{/i ) ;
@ -47,11 +47,19 @@ define(
separator = separator [ 1 ] ;
}
if ( numberStyle === null ) {
numberStyle = 'S{season:00}E{episode:00}' ;
}
else {
numberStyle = numberStyle [ 0 ] ;
}
this . model . set ( {
includeSeriesTitle : includeSeriesTitle !== null ,
includeEpisodeTitle : includeEpisodeTitle !== null ,
includeQuality : includeQuality !== null ,
numberStyle : numberStyle [ 0 ] ,
numberStyle : numberStyle ,
replaceSpaces : replaceSpaces ,
separator : separator
} , { silent : true } ) ;