Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/src/commit/78c409a05fe6ffb755555b2dd4819234774b11c3/NzbDrone.Core/Model/Xbmc/TvShowResult.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/NzbDrone.Core/Model/Xbmc/TvShowResult.cs

11 lines
216 B

using System.Collections.Generic;
namespace NzbDrone.Core.Model.Xbmc
{
public class TvShowResult
{
public Dictionary<string, int> Limits { get; set; }
public List<TvShow> TvShows;
}
}