Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/ecfaea38858268be046907f30f34c829c7f153bc?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
1 additions and
1 deletions
@ -250,7 +250,7 @@ namespace NzbDrone.Core.Organizer
tokenHandlers [ "{Movie TitleThe}" ] = m = > TitleThe ( movie . Title ) ;
tokenHandlers [ "{Movie TitleThe}" ] = m = > TitleThe ( movie . Title ) ;
tokenHandlers [ "{Movie TitleFirstCharacter}" ] = m = > TitleThe ( GetLanguageTitle ( movie , m . CustomFormat ) ) . Substring ( 0 , 1 ) . FirstCharToUpper ( ) ;
tokenHandlers [ "{Movie TitleFirstCharacter}" ] = m = > TitleThe ( GetLanguageTitle ( movie , m . CustomFormat ) ) . Substring ( 0 , 1 ) . FirstCharToUpper ( ) ;
tokenHandlers [ "{Movie OriginalTitle}" ] = m = > movie . MovieMetadata . Value . OriginalTitle ? ? string . Empty ;
tokenHandlers [ "{Movie OriginalTitle}" ] = m = > movie . MovieMetadata . Value . OriginalTitle ? ? string . Empty ;
tokenHandlers [ "{Movie CleanOriginalTitle}" ] = m = > CleanTitle ( movie . MovieMetadata . Value . OriginalTitle ) ? ? string . Empty ;
tokenHandlers [ "{Movie CleanOriginalTitle}" ] = m = > CleanTitle ( movie . MovieMetadata . Value . OriginalTitle ? ? string . Empty ) ;
tokenHandlers [ "{Movie Certification}" ] = m = > movie . MovieMetadata . Value . Certification ? ? string . Empty ;
tokenHandlers [ "{Movie Certification}" ] = m = > movie . MovieMetadata . Value . Certification ? ? string . Empty ;
tokenHandlers [ "{Movie Collection}" ] = m = > movie . MovieMetadata . Value . CollectionTitle ? ? string . Empty ;
tokenHandlers [ "{Movie Collection}" ] = m = > movie . MovieMetadata . Value . CollectionTitle ? ? string . Empty ;