Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/f59b391b28d3c39e2a816bb877d39b7edcf5c7a1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
1 deletions
@ -117,7 +117,8 @@ class NamingModal extends Component {
{ token : '{Movie Title}' , example : 'Movie Title!' } ,
{ token : '{Movie CleanTitle}' , example : 'Movie Title' } ,
{ token : '{Movie TitleThe}' , example : 'Movie Title, The' } ,
{ token : '{Movie Certification}' , example : 'R' }
{ token : '{Movie Certification}' , example : 'R' } ,
{ token : '{Release Year}' , example : '2009' }
] ;
const movieIdTokens = [
@ -214,6 +214,12 @@ namespace NzbDrone.Core.Organizer
private void AddReleaseDateTokens ( Dictionary < string , Func < TokenMatch , string > > tokenHandlers , int releaseYear )
{
if ( releaseYear = = 0 )
{
tokenHandlers [ "{Release Year}" ] = m = > string . Empty ;
return ;
}
tokenHandlers [ "{Release Year}" ] = m = > string . Format ( "{0}" , releaseYear . ToString ( ) ) ; //Do I need m.CustomFormat?
}