Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/2af07d7e0d3e8bd03c1f2b04d05b3690295532e2
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
14 additions and
14 deletions
@ -132,23 +132,23 @@ namespace NzbDrone.Core.MediaCover
{
if ( e . Status = = WebExceptionStatus . ProtocolError )
{
_logger . Warn ( e , "Server returned different code than 200. The poster is probably not available yet." ) ;
return ;
}
_logger . Warn ( e , string . Format ( "Couldn't download media cover for {0}. {1}" , movie , e . Message ) ) ;
if ( retried < 3 )
{
retried = + 1 ;
_logger . Warn ( "Retrying for the {0}. time in ten seconds." , retried ) ;
System . Threading . Thread . Sleep ( 10 * 1000 ) ;
EnsureCovers ( movie , retried ) ;
_logger . Warn ( e , string . Format ( "Couldn't download media cover for {0}, likely the cover doesn't exist for this movie. {1}" , movie , e . Message ) ) ;
}
else
{
_logger . Warn ( e , "Couldn't download media cover even after retrying five times :(." ) ;
_logger . Warn ( e , string . Format ( "Couldn't download media cover for {0}. {1}" , movie , e . Message ) ) ;
if ( retried < 3 )
{
retried = + 1 ;
_logger . Warn ( "Retrying for the {0}. time in ten seconds." , retried ) ;
System . Threading . Thread . Sleep ( 10 * 1000 ) ;
EnsureCovers ( movie , retried ) ;
}
else
{
_logger . Warn ( e , "Couldn't download media cover even after retrying five times :(." ) ;
}
}
}
catch ( Exception e )
{
@ -12,7 +12,7 @@ var Collection = PagableCollection.extend({
state : {
pageSize : 15 ,
sortKey : ' inCinemas ',
sortKey : ' title ',
order : - 1
} ,