Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/a2d993138ca073b230c390531c83b86be613026a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
2 deletions
@ -78,8 +78,10 @@ namespace NzbDrone.Core.MediaFiles
string path = series . Path ;
if ( series . SeasonFolder )
{
//TODO: Allow series name
var seasonFolder = _configService . SortingSeasonFolderFormat
. Replace ( "%sn" , series . Title )
. Replace ( "%s.n" , series . Title . Replace ( ' ' , '.' ) )
. Replace ( "%s_n" , series . Title . Replace ( ' ' , '_' ) )
. Replace ( "%0s" , seasonNumber . ToString ( "00" ) )
. Replace ( "%s" , seasonNumber . ToString ( ) ) ;
@ -113,7 +113,7 @@
< div class = "controls" >
< input type = "text" placeholder = "Season %s" name = "seasonFolderFormat" / >
< span class = "help-inline" >
< i class = "icon-question-sign" title = "How should season folders be named? (Use %0s to pad to two digits )"/ >
< i class = "icon-question-sign" title = "How should season folders be named? (Use %0s to pad to two digits , %sn for Series Name )"/ >
< / span >
< / div >
< / div >