Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/blame/commit/82933fbcc399fda028485bd4515e6004b6ff1ff5/NzbDrone.Core/Tv/Season.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/NzbDrone.Core/Tv/Season.cs

11 lines
228 B

using System;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Tv
{
public class Season : IEmbeddedDocument
{
public int SeasonNumber { get; set; }
public Boolean Monitored { get; set; }
}
}