Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/b320a23bf8f1cfbf0734a233ec51c64692dc4f36
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
16 additions and
2 deletions
@ -130,7 +130,14 @@ namespace NzbDrone.Core.Download
}
catch ( HttpException ex )
{
_logger . Error ( ex , "Downloading torrent file for episode '{0}' failed ({1})" , remoteEpisode . Release . Title , torrentUrl ) ;
if ( ( int ) ex . Response . StatusCode = = 429 )
{
_logger . Error ( "API Grab Limit reached for {0}" , torrentUrl ) ;
}
else
{
_logger . Error ( ex , "Downloading torrent file for episode '{0}' failed ({1})" , remoteEpisode . Release . Title , torrentUrl ) ;
}
throw new ReleaseDownloadException ( remoteEpisode . Release , "Downloading torrent failed" , ex ) ;
}
@ -53,7 +53,14 @@ namespace NzbDrone.Core.Download
}
catch ( HttpException ex )
{
_logger . Error ( ex , "Downloading nzb for episode '{0}' failed ({1})" , remoteEpisode . Release . Title , url ) ;
if ( ( int ) ex . Response . StatusCode = = 429 )
{
_logger . Error ( "API Grab Limit reached for {0}" , url ) ;
}
else
{
_logger . Error ( ex , "Downloading nzb for episode '{0}' failed ({1})" , remoteEpisode . Release . Title , url ) ;
}
throw new ReleaseDownloadException ( remoteEpisode . Release , "Downloading nzb failed" , ex ) ;
}