Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/8871864bc0b6a911f6a44d6688baf19092f334ad
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
1 additions and
5 deletions
@ -236,10 +236,7 @@ namespace NzbDrone.Core.Organizer
tokenHandlers [ "{Movie Title The}" ] = m = > TitleThe ( movie . Title ) ;
tokenHandlers [ "{Movie TitleFirstCharacter}" ] = m = > TitleThe ( movie . Title ) . Substring ( 0 , 1 ) . FirstCharToUpper ( ) ;
if ( movie . Certification . IsNotNullOrWhiteSpace ( ) )
{
tokenHandlers [ "{Movie Certification}" ] = mbox = > movie . Certification ;
} ;
tokenHandlers [ "{Movie Certification}" ] = m = > movie . Certification ? ? string . Empty ;
}
private string GetLanguageTitle ( Movie movie , string isoCodes )
@ -299,7 +296,6 @@ namespace NzbDrone.Core.Organizer
tokenHandlers [ "{Original Title}" ] = m = > GetOriginalTitle ( movieFile ) ;
tokenHandlers [ "{Original Filename}" ] = m = > GetOriginalFileName ( movieFile ) ;
//tokenHandlers["{IMDb Id}"] = m =>
tokenHandlers [ "{Release Group}" ] = m = > movieFile . ReleaseGroup ? ? m . DefaultValue ( "Radarr" ) ;
}