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

19 lines
351 B

using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.MediaCover
{
public enum MediaCoverTypes
{
Unknown = 0,
Poster = 1,
Banner = 2,
Fanart = 3
}
public class MediaCover : IEmbeddedDocument
{
public MediaCoverTypes CoverType { get; set; }
public string Url { get; set; }
}
}