Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/blame/commit/a4c433c5b21ccbae7623642753491b04bcf80dbb/NzbDrone.Services/NzbDrone.Services.Service/Repository/Reporting/ExceptionRow.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

15 lines
377 B

using System.Linq;
using Services.PetaPoco;
namespace NzbDrone.Services.Service.Repository.Reporting
{
[TableName("ExceptionReports")]
public class ExceptionRow : ReportRowBase
{
public string Type { get; set; }
public string Logger { get; set; }
public string LogMessage { get; set; }
public string String { get; set; }
}
}