Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/70856c217cf7e4e4379d4ff46f5373b51f8b0086
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
12 additions and
8 deletions
@ -75,7 +75,7 @@ namespace NzbDrone.Core.Test.MetadataSource.Goodreads
[Test]
public void getting_details_of_invalid_book ( )
{
Assert . Throws < BookNotFoundException > ( ( ) = > Subject . GetBookInfo ( " 99999999 ") ) ;
Assert . Throws < BookNotFoundException > ( ( ) = > Subject . GetBookInfo ( " 1 ") ) ;
}
private void ValidateAuthor ( Author author )
@ -125,7 +125,7 @@ namespace NzbDrone.Core.MetadataSource.BookInfo
catch ( BookInfoException e )
{
_logger . Warn ( e , "Unexpected error getting book info" ) ;
throw new Author NotFoundException( foreignBookId ) ;
throw new Book NotFoundException( foreignBookId ) ;
}
}
@ -398,9 +398,9 @@ namespace NzbDrone.Core.MetadataSource.BookInfo
}
var location = httpResponse . Headers . GetSingleValue ( "Location" ) ;
var split = location . Split ( '/' ) ;
var type = split [ 0 ] ;
var newId = split [ 1 ] ;
var split = location . Split ( '/' ) .Reverse ( ) . ToList ( ) ;
var newId = split [ 0 ] ;
var type = split [ 1 ] ;
Book book ;
List < AuthorMetadata > authors ;
@ -437,6 +437,10 @@ namespace NzbDrone.Core.MetadataSource.BookInfo
trimmed . AuthorMetadata = book . AuthorMetadata . Value ;
trimmed . SeriesLinks = book . SeriesLinks ;
var edition = book . Editions . Value . SingleOrDefault ( e = > e . ForeignEditionId = = id . ToString ( ) ) ;
if ( edition ! = null )
{
edition . Monitored = true ;
}
trimmed . Editions = new List < Edition > { edition } ;
book = trimmed ;
@ -632,9 +636,9 @@ namespace NzbDrone.Core.MetadataSource.BookInfo
if ( httpResponse . HasHttpRedirect )
{
var location = httpResponse . Headers . GetSingleValue ( "Location" ) ;
var split = location . Split ( '/' ) ;
var type = split [ 0 ] ;
var newId = split [ 1 ] ;
var split = location . Split ( '/' ) .Reverse ( ) . ToList ( ) ;
var newId = split [ 0 ] ;
var type = split [ 1 ] ;
if ( type = = "author" )
{