Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/25e2c98c45c99bbada47780f4fb86c2854f071e9/NzbDrone.Api/Logs/LogFileResource.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone.Api/Logs/LogFileResource.cs

12 lines
232 B

using System;
using NzbDrone.Api.REST;
namespace NzbDrone.Api.Logs
{
public class LogFileResource : RestResource
{
public String Filename { get; set; }
public DateTime LastWriteTime { get; set; }
}
}