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

Fixed: Frontend error in confirm import dialog

pull/755/head
ta264 4 years ago
parent cab92745da
commit b3aeeeef09

@ -1,6 +1,5 @@
using System;
using System.Linq;
using NzbDrone.Common.Extensions;
using NzbDrone.Core.DecisionEngine.Specifications;
using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.Parser.Model;
@ -49,7 +48,7 @@ namespace Readarr.Api.V1.BookFiles
return new BookFileResource
{
Id = model.Id,
BookId = model.EditionId,
BookId = model.Edition.Value?.BookId ?? 0,
Path = model.Path,
Size = model.Size,
DateAdded = model.DateAdded,
@ -71,7 +70,7 @@ namespace Readarr.Api.V1.BookFiles
Id = model.Id,
AuthorId = author.Id,
BookId = model.EditionId,
BookId = model.Edition.Value?.BookId ?? 0,
Path = model.Path,
Size = model.Size,
DateAdded = model.DateAdded,

Loading…
Cancel
Save