Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/2f8ad5db454f53123f0f8d3a8991a598983f1b06
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
0 deletions
@ -153,9 +153,12 @@ namespace NzbDrone.Core.Providers
Logger . Debug ( "Show is being watched: {0}" , series . Title ) ;
nzb . TitleFix = GetTitleFix ( episodeParseResults , series . SeriesId ) ; //Get the TitleFix so we can use it later
nzb . Proper = Parser . ParseProper ( nzb . Title ) ;
nzb . Quality = Parser . ParseQuality ( nzb . Title ) ;
nzb . TitleFix = String . Format ( "{0} [{1}]" , nzb . TitleFix , nzb . Quality ) ; //Add Quality to the titleFix
//Loop through the list of the episodeParseResults to ensure that all the episodes are needed)
foreach ( var episode in episodeParseResults )
{
@ -172,6 +175,7 @@ namespace NzbDrone.Core.Providers
return ;
var titleFix = GetTitleFix ( new List < EpisodeParseResult > { episode } , episodeModel . SeriesId ) ;
titleFix = String . Format ( "{0} [{1}]" , titleFix , nzb . Quality ) ; //Add Quality to the titleFix
if ( _sab . IsInQueue ( titleFix ) )
return ;