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

26 lines
591 B

using System;
using System.Linq;
using NzbDrone.Common.Contract;
namespace NzbDrone.Services.Service.Repository.Reporting
{
public abstract class ReportRowBase
{
public void LoadBase(ReportBase report)
{
Timestamp = DateTime.Now;
Version = report.Version;
IsProduction = report.IsProduction;
UGuid = report.UGuid;
}
public string Version { get; set; }
public DateTime Timestamp { get; set; }
public bool IsProduction { get; set; }
public Guid UGuid { get; set; }
}
}