Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/0c6cc4acdb2d1e157aeea54dd794f1c43f48ce85
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
2 deletions
@ -90,6 +90,7 @@ const qualityTokens = [
const mediaInfoTokens = [
{ token : '{MediaInfo AudioCodec}' , example : 'FLAC' } ,
{ token : '{MediaInfo AudioChannels}' , example : '2.0' } ,
{ token : '{MediaInfo AudioBitRate}' , example : '320kbps' } ,
{ token : '{MediaInfo AudioBitsPerSample}' , example : '24bit' } ,
{ token : '{MediaInfo AudioSampleRate}' , example : '44.1kHz' }
] ;
@ -100,8 +101,8 @@ const otherTokens = [
] ;
const originalTokens = [
{ token : '{Original Title}' , example : 'Artist.Name. S01E01.HDTV.x264 -EVOLVE' } ,
{ token : '{Original Filename}' , example : ' artist.name.s01e01.hdtv.x264-EVOLVE ' }
{ token : '{Original Title}' , example : 'Artist.Name. Album.Name.2018.FLAC -EVOLVE' } ,
{ token : '{Original Filename}' , example : ' 01 - track name ' }
] ;
class NamingModal extends Component {
@ -341,6 +341,7 @@ namespace NzbDrone.Core.Organizer
tokenHandlers [ "{MediaInfo AudioCodec}" ] = m = > audioCodec ;
tokenHandlers [ "{MediaInfo AudioChannels}" ] = m = > audioChannelsFormatted ;
tokenHandlers [ "{MediaInfo AudioBitRate}" ] = m = > MediaInfoFormatter . FormatAudioBitrate ( trackFile . MediaInfo ) ;
tokenHandlers [ "{MediaInfo AudioBitsPerSample}" ] = m = > MediaInfoFormatter . FormatAudioBitsPerSample ( trackFile . MediaInfo ) ;
tokenHandlers [ "{MediaInfo AudioSampleRate}" ] = m = > MediaInfoFormatter . FormatAudioSampleRate ( trackFile . MediaInfo ) ;
}