Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/fc4c42eeb7d0d83f0001b1e2febc2dc4740dbab1 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Refresh fail if series title null

pull/755/head
ta264 4 years ago
parent 8fc3aef872
commit fc4c42eeb7

@ -273,7 +273,10 @@ namespace NzbDrone.Core.MetadataSource.Goodreads
var bookDict = books.ToDictionary(x => x.ForeignBookId);
// only take series where there are some works
foreach (var seriesResource in resource.List.Where(x => x.Works.Any()))
// and the title is not null
// e.g. https://www.goodreads.com/series/work/6470221?format=xml is in series 260494
// which has a null title and is not shown anywhere on goodreads webpage
foreach (var seriesResource in resource.List.Where(x => x.Title.IsNotNullOrWhiteSpace() && x.Works.Any()))
{
var series = MapSeries(seriesResource);
series.LinkItems = new List<SeriesBookLink>();

Loading…
Cancel
Save