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/b088c2c19d80f81909476944cc58cd2fb6e617b6/NzbDrone.Api/EpisodeFiles/EpisodeFileResource.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/NzbDrone.Api/EpisodeFiles/EpisodeFileResource.cs

18 lines
488 B

using System;
using NzbDrone.Api.REST;
using NzbDrone.Core.Tv;
namespace NzbDrone.Api.EpisodeFiles
{
public class EpisodeFileResource : RestResource
{
public Int32 SeriesId { get; set; }
public Int32 SeasonNumber { get; set; }
public String Path { get; set; }
public Int64 Size { get; set; }
public DateTime DateAdded { get; set; }
public String SceneName { get; set; }
public QualityModel Quality { get; set; }
}
}