Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/src/commit/08e2d60f20936344b25301d5e128e7d54bfbe591/NzbDrone.Core/MediaCover/MediaCover.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/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; }
}
}